Pu Zhibing
2025-06-19 a05b419384e148fc950c77553816a2d05144f4ae
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package com.ruoyi.dataInterchange.api.vo;
 
import lombok.Data;
 
/**
 * @author zhibing.pu
 * @Date 2025/6/5 16:01
 */
@Data
public class UPWarnMsgOperationInfoVo {
    private String id;
    /**
     * 下级平台唯一标识
     */
    private Integer inferiorPlatformId;
    /**
     * 添加时间
     */
    private Long createTime;
    /**
     * 车牌号
     */
    private String vehicleNo;
    /**
     * 车牌颜色
     */
    private int vehicleColor;
    /**
     * 子业务类型标识
     */
    private int dataType;
    /**
     * 后续数据长度
     */
    private int dataLength;
    /**
     * 报警信息ID
     */
    private String infoId;
    /**
     * 报警处理结果
     * 0x00:处理中
     * 0x01:已处理完毕
     */
    private int result;
    /**
     * 报警处理方式
     * 0x00: 快速拍照
     * 0x01: 语音下发
     * 0x02: 不做处理
     * 0x03: 其他
     */
    private int method;
    /**
     * 报警处理人姓名长度
     */
    private int operatorLength;
    /**
     * 报警处理人姓名
     */
    private String operator;
    /**
     * 报警处理人所属公司名称长度
     */
    private int companyLength;
    /**
     * 报警处理人所属公司名称
     */
    private String company;
}