陈战涛
2023-05-09 9e60bc0bc323ce76b3abdc6cf54dd3ca7870b499
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
package com.fzzy.push.shjdjw2023.dto;
 
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * 接口返回
 * @author czt
 * @date 2023/5/9  19:27
 */
@Data
public class ShjdjwRespDto<T> implements Serializable {
    /**
     *
     */
    private static final long serialVersionUID = -6714158228489303453L;
 
 
 
    private int code ;
 
    private String description;
 
    private String bizId;
 
    private  T data;
 
    public ShjdjwRespDto() {
    }
 
    public ShjdjwRespDto(int code, String description) {
        this.code = code;
        this.description = description;
    }
    public ShjdjwRespDto(int code, String description, String bizId) {
        this.code = code;
        this.description = description;
        this.bizId = bizId;
    }
}