package com.ruoyi.dataInterchange.model;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import lombok.Data;
|
|
/**
|
* 车辆应急接入监管平台请求
|
* @author zhibing.pu
|
* @Date 2025/3/3 17:10
|
*/
|
@Data
|
public class DOWNCtrlMsgEmergencyMonitoringReq {
|
/**
|
* 车牌号码
|
*/
|
@JsonProperty("VEHICLE_NO")
|
private String vehicleNo;
|
/**
|
* 车牌颜色
|
*/
|
@JsonProperty("VEHICLE_COLOR")
|
private String vehicleColor;
|
/**
|
* 子业务类型标识
|
*/
|
@JsonProperty("DATA_TYPE")
|
private String dataType;
|
/**
|
* 后续数据长度
|
*/
|
@JsonProperty("DATA_LENGTH")
|
private String dataLength;
|
/**
|
* 监管平台下发的鉴权码,用于车载终端连接到监管平台鉴权时使用
|
*/
|
@JsonProperty("AUTHENTICATION_CODE")
|
private String authenticationCode;
|
/**
|
* 拨号点名称
|
*/
|
@JsonProperty("ACCESS_POINT_NAME")
|
private String accessPointName;
|
/**
|
* 拨号用户名
|
*/
|
@JsonProperty("USERNAME")
|
private String username;
|
/**
|
* 拨号密码
|
*/
|
@JsonProperty("PASSWORD")
|
private String password;
|
/**
|
* 地址
|
*/
|
@JsonProperty("SERVER_IP")
|
private String serverIp;
|
/**
|
* 服务器TCP端口
|
*/
|
@JsonProperty("TCP_PORT")
|
private String tcpPort;
|
/**
|
* 服务器UDP端口
|
*/
|
@JsonProperty("UDP_PORT")
|
private String udpPort;
|
/**
|
* 结束时间
|
*/
|
@JsonProperty("END_TIME")
|
private String endTime;
|
}
|