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.fzzy.order.ordersx2023.data;
|
| import lombok.Data;
|
| import java.io.Serializable;
|
| /**
| * @Description 指令回复封装
| * @Author CZT
| * @Date 2024/4/23 11:16
| */
| @Data
| public class OrderSxResp implements Serializable {
| /**
| *
| */
| private static final long serialVersionUID = -6714158228489303453L;
|
| private String code;
|
| public OrderSxResp() {
| }
|
| public OrderSxResp(String code) {
| this.code = code;
|
| }
| }
|
|