Pu Zhibing
2025-02-28 8baab7959e8efd5be4c0276b7759c2b677eeb7df
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
package com.ruoyi.dataInterchange.model;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
 
/**
 * 上报驾驶员身份信息应答
 * @author zhibing.pu
 * @Date 2025/2/24 15:14
 */
@Data
public class UPExgMsgReportDriverInfoAck {
    /**
     * 车牌号
     */
    @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 Integer sourceDataType;
    /**
     * 对应上报驾驶员身份请求消息源报文序列号
     */
    @JsonProperty("SOURCE_MSG_SN")
    private Integer sourceMsgSn;
    /**
     * 驾驶员姓名
     */
    @JsonProperty("DRIVER_NAME")
    private String driverName;
    /**
     * 驾驶证编号
     */
    @JsonProperty("DRIVER_ID")
    private String driverId;
    /**
     * 从业资格证号
     */
    @JsonProperty("LICENCE")
    private String licence;
    /**
     * 发证机构名称
     */
    @JsonProperty("ORG_NAME")
    private String orgName;
    /**
     * 证件有效期,时分秒均用0表示
     */
    @JsonProperty("VALID_TIME")
    private String validTime;
}