CZT
2023-10-27 dc66963d36e0a479e7334092241834b60bf8bbe2
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
package com.fzzy.push.gd2022.dto;
 
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @author vince.xu
 * @Title: ResponseDto
 * @ProjectName igds-api
 * @Description: 接口返回dto
 * @date 2022-9-217:48
 */
@Data
public class GD2022ResponseDto<T> implements Serializable {
    /**
     *
     */
    private static final long serialVersionUID = -6714158228489303453L;
 
 
 
    private int code ;
 
    private String msg;
 
    private String bizId;
 
    private  T data;
 
    public GD2022ResponseDto() {
    }
 
    public GD2022ResponseDto(int code, String msg) {
        this.code = code;
        this.msg = msg;
    }
    public GD2022ResponseDto(int code, String msg,String bizId) {
        this.code = code;
        this.msg = msg;
        this.bizId = bizId;
    }
}