package com.moral.api.pojo.query.app;
|
|
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.util.List;
|
|
/**
|
* @ClassName AppAllocationPageCond
|
* @Description TODO
|
* @Author @cjl
|
* @Date 2023-10-25 16:13
|
* @Version 1.0
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@ApiModel(value="AppAllocation - App分页查询对象", description="AppAllocation - App分页查询对象")
|
public class AppAllocationPageCond {
|
|
@ApiModelProperty(value = "状态,0全部 1代办2待处理,已完成")
|
private Integer state;
|
|
@ApiModelProperty(value = "开始时间")
|
private String startTime;
|
|
@ApiModelProperty(value = "结束时间")
|
private String endTime;
|
|
@ApiModelProperty(value = "分页参数")
|
private PageCond page;
|
|
@ApiModelProperty(value = "状态list")
|
private List<Integer> stateList;
|
|
@ApiModelProperty(value = "单位list")
|
private List<Integer> unitList;
|
}
|