|
|
|
@ -1,12 +1,16 @@
|
|
|
|
|
package cn.iocoder.yudao.module.farm.controller.admin.resource.vo; |
|
|
|
|
|
|
|
|
|
import com.alibaba.fastjson.JSONArray; |
|
|
|
|
import lombok.*; |
|
|
|
|
import java.util.*; |
|
|
|
|
import io.swagger.annotations.*; |
|
|
|
|
import cn.iocoder.yudao.framework.common.pojo.PageParam; |
|
|
|
|
import com.alibaba.fastjson.JSONArray; |
|
|
|
|
import io.swagger.annotations.ApiModel; |
|
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
|
import lombok.Data; |
|
|
|
|
import lombok.EqualsAndHashCode; |
|
|
|
|
import lombok.ToString; |
|
|
|
|
import org.springframework.format.annotation.DateTimeFormat; |
|
|
|
|
|
|
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
|
|
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND; |
|
|
|
|
|
|
|
|
|
@ApiModel("管理后台 - 农场资源分页 Request VO") |
|
|
|
@ -21,6 +25,9 @@ public class ResourcePageReqVO extends PageParam {
|
|
|
|
|
@ApiModelProperty(value = "") |
|
|
|
|
private String name; |
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "保管人id") |
|
|
|
|
private Long custodianId; |
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "") |
|
|
|
|
private String content; |
|
|
|
|
|
|
|
|
|