jiazx0107@163.com
2023-12-14 231cdeb9b7a55ba08fb8cffda35f5535b9292873
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
29
30
31
package com.fzzy.order.data;
 
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * 指令反馈
 * @author czt
 * @date 2023/08/17
 */
@Data
public class OrderResp<T> implements Serializable {
    /**
     *
     */
    private static final long serialVersionUID = -6714158228489303453L;
 
    private String code ;
 
    private String result;
 
 
    public OrderResp() {
    }
 
    public OrderResp(String code, String result) {
        this.code = code;
        this.result = result;
    }
}