CZT
2023-11-27 c206acfaedc69c390fb67daa81bc686f58a212ef
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package com.ld.igds.sh.dto;
 
import lombok.Data;
import org.apache.commons.lang3.time.DateFormatUtils;
import java.io.Serializable;
import java.util.Date;
 
/**
 * 接口服务统一响应参数
 *
 * @author chen
 */
@Data
public class ApiResponse<T> implements Serializable {
 
    private static String DATE_FORMAT_STRING = "yyyy-MM-dd HH:mm:ss";
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 响应码
     */
    private String code;
    /**
     * 签名类型
     */
    private String sign;
    /**
     * 自由编码
     */
    private String outId;
 
    /**
     * 命令id
     */
    private String orderId;
    /**
     * 响应时间
     */
    private String respDateTime;
    /**
     * 库区编码
     */
    private String deptId;
    /**
     * 返回数据
     */
    private T data;
 
    public ApiResponse() {
        super();
    }
 
    public ApiResponse(String code, String orderId) {
        this.code = code;
        this.orderId = orderId;
        this.respDateTime = DateFormatUtils.format(new Date(), DATE_FORMAT_STRING);
    }
 
    public ApiResponse(String code, String orderId, T data) {
        this.code = code;
        this.orderId = orderId;
        this.data = data;
        this.respDateTime = DateFormatUtils.format(new Date(), DATE_FORMAT_STRING);
    }
 
    public ApiResponse(String code, String sign, String outId, String orderId, String deptId) {
        this.code = code;
        this.sign = sign;
        this.outId = outId;
        this.orderId = orderId;
        this.deptId = deptId;
        this.respDateTime = DateFormatUtils.format(new Date(), DATE_FORMAT_STRING);
    }
 
    public ApiResponse(String code, String sign, String outId, String orderId, String deptId, T data) {
        this.code = code;
        this.sign = sign;
        this.outId = outId;
        this.orderId = orderId;
        this.data = data;
        this.deptId = deptId;
        this.respDateTime = DateFormatUtils.format(new Date(), DATE_FORMAT_STRING);
    }
}