package com.ruoyi.dataInterchange.model;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import lombok.Data;
|
|
/**
|
* 主动上报驾驶员身份信息
|
* @author zhibing.pu
|
* @Date 2025/2/24 15:25
|
*/
|
@Data
|
public class UPExgMsgReportDriverInfo {
|
/**
|
* 车牌号
|
*/
|
@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("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;
|
}
|