package com.moral.api.pojo.query.allocation; import com.moral.api.pojo.query.PageCond; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.experimental.Accessors; import java.io.Serializable; /** *
* 交办单 *
* deyt template generate * @author JI * @since 2023-09-25 */ @Data @EqualsAndHashCode(callSuper = false) @Accessors(chain = true) @ApiModel(value="Allocation - 分页查询对象", description="Allocation - 分页查询对象") public class AllocationPageCond implements Serializable{ @ApiModelProperty(value = "责任单位id") private Integer unitId; @ApiModelProperty(value = "污染分类id") private Integer polluteType; @ApiModelProperty(value = "流程状态") private Integer state; @ApiModelProperty(value = "排查方式id") private Integer investigationType; @ApiModelProperty(value = "整改类型id") private Integer changeType; @ApiModelProperty(value = "是否作废") private Integer isInvalid; @ApiModelProperty(value = "开始时间") private String startTime; @ApiModelProperty(value = "结束时间") private String endTime; @ApiModelProperty(value = "分页参数") private PageCond page; }