龚焕茏
2024-08-23 036af8cd158f5768c83cd98ad6dd6256a22feec6
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
package com.ycl.platform.domain.query;
 
import com.ycl.platform.base.AbsQuery;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.experimental.Accessors;
 
import java.util.List;
 
/**
 * 报备查询
 *
 * @author xp
 * @since 2024-03-19
 */
@Data
@Accessors(chain = true)
@ApiModel(value = "Report查询", description = "报备查询")
public class ReportQuery extends AbsQuery {
 
    private String reportType;
 
    private String keyword;
 
//    private Date beginCreateTime;
//
//    private Date endCreateTime;
 
    private String pointId;
 
    private String peopleId;
 
    private List<Integer> pointIdList;
 
    private List<Integer> peopleIdList;
 
    @ApiModelProperty("状态")
    private Integer status;
 
}