package com.ruoyi.dataInterchange.model;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import lombok.Data;
|
|
/**
|
* 下发平台间信息补传请求
|
* @author zhibing.pu
|
* @Date 2025/3/3 14:38
|
*/
|
@Data
|
public class DOWNPlatformMsgRetranReq {
|
/**
|
* 子业务类型标识
|
*/
|
@JsonProperty("DATA_TYPE")
|
private String dataType;
|
/**
|
* 后续数据长度
|
*/
|
@JsonProperty("DATA_LENGTH")
|
private String dataLength;
|
/**
|
* 对应需要重传消息的子业务类型标识
|
*/
|
@JsonProperty("RETRAN_DATA_TYPE")
|
private String retranDataType;
|
/**
|
* 重传消息总数
|
*/
|
@JsonProperty("SERIAL_TOTAL")
|
private String serialTotal;
|
/**
|
* 需要重传消息的起始报文序列号和结束的报文序列号
|
*/
|
@JsonProperty("SERIAL_LIST")
|
private Integer serialList;
|
/**
|
* 重传起始系统UTC时间
|
*/
|
@JsonProperty("TIME")
|
private String time;
|
|
}
|