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;//消息体
|
}
|