jiazx0107
2026-02-08 e7ab049344b954b044fc474992c378fcbbeeba33
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
package com.fzzy.igds.quantity.dto;
 
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @Description 返回信息封装
 * @Author CZT
 * @Date 2026/01/08 16:36
 */
@Data
public class IoMessage implements Serializable {
 
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
    private String sn;//序列号
    private String version = "V1.0";
    private String sign = "0000";
    private String functionId;
    private String result;
    private String orderId;
    private String content;//消息体
}