Pu Zhibing
2025-03-07 297512bc22b179b7038d96a1ff033eceaed38c4b
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
package com.ruoyi.dataInterchange.model;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data; /**
 * 申请交换指定车辆定位信息应答
 * @author zhibing.pu
 * @Date 2025/3/3 10:47
 */
@Data
public class DOWNExgMsgApplyForMonitorStartupAck {
    /**
     * 车牌号
     */
    @JsonProperty("VEHICLE_NO")
    private String vehicleNo;
    /**
     * 车牌颜色
     */
    @JsonProperty("VEHICLE_COLOR")
    private String vehicleColor;
    /**
     * 子业务类型标识
     */
    @JsonProperty("DATA_TYPE")
    private String dataType;
    /**
     * 后续数据长度
     */
    @JsonProperty("DATA_LENGTH")
    private Integer dataLength;
    /**
     * 对应申请交换指定车辆定位信息请求信息源子业务类型标识
     */
    @JsonProperty("SOURCE_DATA_TYPE")
    private String sourceDataType;
    /**
     * 对应申请交换指定车辆定位信息请求信息源报文序号
     */
    @JsonProperty("SOURCE_MSG_SN")
    private String sourceMsgSn;
    /**
     * 申请交换指定车辆定位信息结果
     * 0x00:申请成功
     * 0x01:上级平台没有该车辆数据
     * 0x02:申请时间段错误
     * 0xFF:其他
     */
    @JsonProperty("RESULT")
    private String result;
    
}