项目 任务
This commit is contained in:
+3
@@ -1,5 +1,6 @@
|
||||
package cn.iocoder.yudao.module.farm.controller.admin.project.vo;
|
||||
|
||||
import cn.hutool.json.JSON;
|
||||
import lombok.*;
|
||||
import java.util.*;
|
||||
import io.swagger.annotations.*;
|
||||
@@ -31,6 +32,8 @@ public class ProjectBaseVO {
|
||||
@ApiModelProperty(value = "")
|
||||
private Object resources;
|
||||
|
||||
private Object members;
|
||||
|
||||
@ApiModelProperty(value = "")
|
||||
private String images;
|
||||
|
||||
|
||||
+2
@@ -1,5 +1,6 @@
|
||||
package cn.iocoder.yudao.module.farm.controller.admin.project.vo;
|
||||
|
||||
import cn.hutool.json.JSON;
|
||||
import lombok.*;
|
||||
import java.util.*;
|
||||
import io.swagger.annotations.*;
|
||||
@@ -27,6 +28,7 @@ public class ProjectExcelVO {
|
||||
private Integer state;
|
||||
|
||||
private Object areas;
|
||||
private Object members;
|
||||
|
||||
private Integer cropId;
|
||||
|
||||
|
||||
+2
@@ -1,5 +1,6 @@
|
||||
package cn.iocoder.yudao.module.farm.controller.admin.project.vo;
|
||||
|
||||
import cn.hutool.json.JSON;
|
||||
import lombok.*;
|
||||
import java.util.*;
|
||||
import io.swagger.annotations.*;
|
||||
@@ -26,6 +27,7 @@ public class ProjectExportReqVO {
|
||||
|
||||
@ApiModelProperty(value = "")
|
||||
private Object resources;
|
||||
private Object members;
|
||||
|
||||
@ApiModelProperty(value = "")
|
||||
private String images;
|
||||
|
||||
+2
@@ -1,5 +1,6 @@
|
||||
package cn.iocoder.yudao.module.farm.controller.admin.project.vo;
|
||||
|
||||
import cn.hutool.json.JSON;
|
||||
import lombok.*;
|
||||
import java.util.*;
|
||||
import io.swagger.annotations.*;
|
||||
@@ -23,6 +24,7 @@ public class ProjectPageReqVO extends PageParam {
|
||||
private Integer state;
|
||||
|
||||
private Object areas;
|
||||
private Object members;
|
||||
|
||||
private Integer cropId;
|
||||
|
||||
|
||||
+3
@@ -1,5 +1,6 @@
|
||||
package cn.iocoder.yudao.module.farm.controller.admin.project.vo;
|
||||
|
||||
import cn.hutool.json.JSON;
|
||||
import cn.iocoder.yudao.framework.common.pojo.PageParam;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
@@ -34,6 +35,8 @@ public class ProjectSearchPageReqVO extends PageParam {
|
||||
@ApiModelProperty(value = "")
|
||||
private String resources;
|
||||
|
||||
private Object members;
|
||||
|
||||
@ApiModelProperty(value = "")
|
||||
private String images;
|
||||
|
||||
|
||||
+4
@@ -28,6 +28,10 @@ public class TaskBaseVO {
|
||||
@ApiModelProperty(value = "")
|
||||
private Object resources;
|
||||
|
||||
private Integer mainPerson;
|
||||
private Object executorPerson;
|
||||
private Integer workingHours;
|
||||
|
||||
@ApiModelProperty(value = "")
|
||||
private Object images;
|
||||
|
||||
|
||||
+4
@@ -33,6 +33,10 @@ public class TaskExcelVO {
|
||||
@ExcelProperty("")
|
||||
private Object resources;
|
||||
|
||||
private Integer mainPerson;
|
||||
private Object executorPerson;
|
||||
private Integer workingHours;
|
||||
|
||||
@ExcelProperty("")
|
||||
private Object images;
|
||||
|
||||
|
||||
+4
@@ -25,6 +25,10 @@ public class TaskExportReqVO {
|
||||
@ApiModelProperty(value = "")
|
||||
private Object resources;
|
||||
|
||||
private Integer mainPerson;
|
||||
private Object executorPerson;
|
||||
private Integer workingHours;
|
||||
|
||||
@ApiModelProperty(value = "")
|
||||
private Object images;
|
||||
|
||||
|
||||
+4
@@ -27,6 +27,10 @@ public class TaskPageReqVO extends PageParam {
|
||||
@ApiModelProperty(value = "")
|
||||
private Object resources;
|
||||
|
||||
private Integer mainPerson;
|
||||
private Object executorPerson;
|
||||
private Integer workingHours;
|
||||
|
||||
@ApiModelProperty(value = "")
|
||||
private Object images;
|
||||
|
||||
|
||||
+4
@@ -32,6 +32,10 @@ public class TaskPageSearchReqVO extends PageParam {
|
||||
@ApiModelProperty(value = "")
|
||||
private String resources;
|
||||
|
||||
private Integer mainPerson;
|
||||
private Object executorPerson;
|
||||
private Integer workingHours;
|
||||
|
||||
@ApiModelProperty(value = "")
|
||||
private Object images;
|
||||
|
||||
|
||||
+5
@@ -1,5 +1,6 @@
|
||||
package cn.iocoder.yudao.module.farm.dal.dataobject.project;
|
||||
|
||||
import cn.hutool.json.JSON;
|
||||
import lombok.*;
|
||||
import java.util.*;
|
||||
import com.baomidou.mybatisplus.annotation.*;
|
||||
@@ -41,6 +42,8 @@ public class ProjectDO extends BaseDO {
|
||||
*
|
||||
*/
|
||||
private Object resources;
|
||||
|
||||
private Object members;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@@ -58,4 +61,6 @@ public class ProjectDO extends BaseDO {
|
||||
*/
|
||||
private Integer weight;
|
||||
|
||||
private Integer tenantId;
|
||||
|
||||
}
|
||||
|
||||
+4
@@ -29,6 +29,10 @@ public class TaskDO extends BaseDO {
|
||||
private Integer cropId;
|
||||
private Integer cropNum;
|
||||
|
||||
private Integer mainPerson;
|
||||
private Object executorPerson;
|
||||
private Integer workingHours;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user