南昌市物联网技防平台-学校版后台
zengh
2021-06-03 723946c6b272e5aa4c7ec110ff1395f6c2b23e89
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
43
44
45
46
47
48
49
50
51
52
package org.springblade.jfpt.parcel.vo;
 
import io.swagger.models.auth.In;
import lombok.Data;
 
import java.io.Serializable;
 
@Data
public class ConditionVo implements Serializable {
    /**
     * 开始时间
     */
    private String startDate;
    /**
     * 结束时间
     */
    private String endDate;
 
    /**
     * 开始时间
     */
    private String startTime;
    /**
     * 结束时间
     */
    private String endTime;
 
    /**
     * 状态码 0:本天    1:本周   2:本月
     */
    private Integer status;
 
    /**
     * 是否为违禁品   contraband-违禁物品 normal-非违禁物品
     */
    private String decisioDiagramResult;
 
    /**
     * 分页页码
     */
    private Integer currentPage;
 
    /**
     * 分页记录数
     */
    private Integer pageSize;
 
    /**
     * 预警确认时间描述
     */
    private String timeDesc;
}