peng
2026-03-18 e59a0201057ba67cad425fed804c82ff4ba0c6f1
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 com.tievd.jyz.entity.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.experimental.Accessors;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * <p>
 * 加油事件表
 * </p>
 *
 * @author
 * @since 2023-02-24
 */
@Data
@Accessors(chain = true)
@Schema(name = "告警、事件筛选")
public class EventReqVo implements Serializable {
 
    private static final long serialVersionUID = 1L;
    
    @Schema(description = "车牌号")
    private String licenseNum;
 
    @Schema(description = "算法类型code")
    private String algorithmCode;
    
    @Schema(description = "视频设备code")
    private String cameraCode;
 
    @Schema(description = "机构代码")
    private String orgCode;
 
    @Schema(description = "审核结果1属实,2误报")
    private Byte auditResult;
    
    @Schema(description = "是否已审核 0未处理 1已处理")
    private Byte audited;
 
    @Schema(description = "查询开始时间")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date startTime;
 
    @Schema(description = "查询结束时间")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date endTime;
 
}