Pu Zhibing
2025-02-28 8baab7959e8efd5be4c0276b7759c2b677eeb7df
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.ruoyi.dataInterchange.model;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
 
/**
 * 平台间消息序列号通知
 * @author zhibing.pu
 * @Date 2025/2/24 11:36
 */
@Data
public class ManageMsgSNInform {
    /**
     * 子业务类型标识
     */
    @JsonProperty("DATA_TYPE")
    private String dataType;
    /**
     * 后续数据长度
     */
    @JsonProperty("DATA_LENGTH")
    private Integer dataLength;
    /**
     * 返回的子业务类型标识序列号总数
     */
    @JsonProperty("SERIES_TOTAL")
    private Integer seriesTotal;
}