ws
2023-11-06 a3f0d41f1c7feeee8ec6a377c692ab7023a391d8
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
package com.fzzy.push.whhpjl.dto;
 
import lombok.Data;
import java.io.Serializable;
 
/**
 * 接口返回
 * @author czt
 * @date 2023/08/04
 */
@Data
public class WhjlRespDto<T> implements Serializable {
    /**
     *
     */
    private static final long serialVersionUID = -6714158228489303453L;
 
    private int code ;
 
    private String result;
 
 
    public WhjlRespDto() {
    }
 
    public WhjlRespDto(int code, String result) {
        this.code = code;
        this.result = result;
    }
}