jinpengyong
2023-10-30 addedb6e27a0eff756ff3cabdd7dd2295ade5414
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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;
}