package com.ruoyi.dataInterchange.model;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import lombok.Data;
|
|
/**
|
* 平台链路连接情况与车辆定位消息
|
* @author zhibing.pu
|
* @Date 2025/2/24 11:24
|
*/
|
@Data
|
public class DOWNManageMsgReq {
|
/**
|
* 子业务类型标识
|
*/
|
@JsonProperty("DATA_TYPE")
|
private String dataType;
|
/**
|
* 后续数据长度
|
*/
|
@JsonProperty("DATA_LENGTH")
|
private String dataLength;
|
/**
|
* 需要上报链路连接情况与车辆定位消息传输情况的目标平台唯一编码
|
* 由平台所在地行政区划代码和平台编号组成
|
*/
|
@JsonProperty("PLATFORM_ID")
|
private String platformId;
|
/**
|
* 开始时间
|
*/
|
@JsonProperty("START_TIME")
|
private String startTime;
|
/**
|
* 结束时间
|
*/
|
@JsonProperty("END_TIME")
|
private String endTime;
|
}
|