package com.ruoyi.dataInterchange.model;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import lombok.Data;
|
|
/**
|
* 平台查岗请求
|
* @author zhibing.pu
|
* @Date 2025/3/3 14:16
|
*/
|
@Data
|
public class DOWNPlatformMsgPostQueryReq {
|
/**
|
* 子业务类型标识
|
*/
|
@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;
|
/**
|
* 查岗应答时限
|
*/
|
@JsonProperty("ANSWER_TIME")
|
private String answerTime;
|
/**
|
* 信息ID
|
*/
|
@JsonProperty("INFO_ID")
|
private String infoId;
|
/**
|
* 数据长度
|
*/
|
@JsonProperty("INFO_LENGTH")
|
private String infoLength;
|
/**
|
* 应答内容
|
*/
|
@JsonProperty("INFO_CONTENT")
|
private String infoContent;
|
}
|