cjl
2024-01-10 e60bad3640cdade446b8d7ba3ab13ee22fb79b05
screen-api/src/main/java/com/moral/api/pojo/query/allocation/AllocationPageCond.java
@@ -8,6 +8,7 @@
import lombok.experimental.Accessors;
import java.io.Serializable;
import java.util.List;
/**
 * <p>
@@ -24,13 +25,13 @@
public class AllocationPageCond implements Serializable{
    @ApiModelProperty(value = "责任单位id")
    private Integer unitId;
    private List<Integer> unitId;
    @ApiModelProperty(value = "污染分类id")
    private Integer polluteType;
    private List<Integer> polluteType;
    @ApiModelProperty(value = "流程状态")
    private Integer state;
    private List<Integer> state;
    @ApiModelProperty(value = "排查方式id")
    private Integer investigationType;
@@ -45,10 +46,16 @@
    @ApiModelProperty(value = "开始时间")
    private String startTime;
    @ApiModelProperty(value = "单号")
    private String allocationNum;
    @ApiModelProperty(value = "结束时间")
    private String endTime;
    @ApiModelProperty(value = "分页参数")
    private PageCond page;
    @ApiModelProperty(value = "责任单位list")
    private List<Integer> unitList;
}