package com.ruoyi.dataInterchange.model;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import lombok.Data;
|
|
/**
|
* 下发平台间报文请求
|
* @author zhibing.pu
|
* @Date 2025/3/3 14:24
|
*/
|
@Data
|
public class DOWNPlatformMsgInfoReq {
|
/**
|
* 子业务类型标识
|
*/
|
@JsonProperty("DATA_TYPE")
|
private String dataType;
|
/**
|
* 后续数据长度
|
*/
|
@JsonProperty("DATA_LENGTH")
|
private String dataLength;
|
/**
|
* 下发报文对象类型
|
*/
|
@JsonProperty("OBJECT_TYPE")
|
private String objectType;
|
/**
|
* 下发报文对象的ID,长度不足时后补0x00
|
*/
|
@JsonProperty("OBJECT_ID")
|
private String objectId;
|
/**
|
* 信誉ID
|
*/
|
@JsonProperty("INFO_ID")
|
private String infoId;
|
/**
|
* 信息长度
|
*/
|
@JsonProperty("INFO_LENGTH")
|
private String infoLength;
|
/**
|
* 信息内容
|
*/
|
@JsonProperty("INFO_CONTENT")
|
private String infoContent;
|
|
}
|