|
@@ -1,5 +1,6 @@
|
|
package com.ym.mec.biz.dal.page;
|
|
package com.ym.mec.biz.dal.page;
|
|
|
|
|
|
|
|
+import com.ym.mec.biz.dal.enums.SubjectChangeStatusEnum;
|
|
import com.ym.mec.common.page.QueryInfo;
|
|
import com.ym.mec.common.page.QueryInfo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
@@ -13,6 +14,9 @@ public class SubjectChangeQueryInfo extends QueryInfo {
|
|
@ApiModelProperty(value = "合作单位id",required = false)
|
|
@ApiModelProperty(value = "合作单位id",required = false)
|
|
private Integer cooperationOrganId;
|
|
private Integer cooperationOrganId;
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "状态",required = false)
|
|
|
|
+ private SubjectChangeStatusEnum status;
|
|
|
|
+
|
|
@ApiModelProperty(value = "开始时间",required = false)
|
|
@ApiModelProperty(value = "开始时间",required = false)
|
|
private Date startTime;
|
|
private Date startTime;
|
|
|
|
|
|
@@ -52,4 +56,12 @@ public class SubjectChangeQueryInfo extends QueryInfo {
|
|
public void setCooperationOrganId(Integer cooperationOrganId) {
|
|
public void setCooperationOrganId(Integer cooperationOrganId) {
|
|
this.cooperationOrganId = cooperationOrganId;
|
|
this.cooperationOrganId = cooperationOrganId;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public SubjectChangeStatusEnum getStatus() {
|
|
|
|
+ return status;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setStatus(SubjectChangeStatusEnum status) {
|
|
|
|
+ this.status = status;
|
|
|
|
+ }
|
|
}
|
|
}
|