教育训练处考试制证系统后端
heheng
2025-02-17 40dc81837107f06da1411b0555cab1012207416b
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*    */
package com.gkhy.exam.pay.utils;
 
/*    */
/*    */
/*    */
/*    */
/*    */
/*    */
/*    */
/*    */
/*    */
/*    */
/*    */
/*    */
/*    */ public class ResponseDataVo<T>
        /*    */ {
    /*    */   private String respcode;
    /*    */   private String respmsg;
    /*    */   private T respdata;
 
    /*    */
    /*    */
    public String getRespcode() {
        /* 21 */
        return this.respcode;
        /*    */
    }
 
    /*    */
    /*    */
    public void setRespcode(String respcode) {
        /* 25 */
        this.respcode = respcode;
        /*    */
    }
 
    /*    */
    /*    */
    public String getRespmsg() {
        /* 29 */
        return this.respmsg;
        /*    */
    }
 
    /*    */
    /*    */
    public void setRespmsg(String respmsg) {
        /* 33 */
        this.respmsg = respmsg;
        /*    */
    }
 
    /*    */
    /*    */
    public T getRespdata() {
        /* 37 */
        return this.respdata;
        /*    */
    }
 
    /*    */
    /*    */
    public void setRespdata(T respdata) {
        /* 41 */
        this.respdata = respdata;
        /*    */
    }
 
    /*    */
    /*    */
    /*    */
    /*    */
    public ResponseDataVo() {
    }
 
    /*    */
    /*    */
    /*    */
    public ResponseDataVo(String respcode, String respmsg, T respdata) {
        /* 50 */
        this.respcode = respcode;
        /* 51 */
        this.respmsg = respmsg;
        /* 52 */
        this.respdata = respdata;
        /*    */
    }
 
    /*    */
    /*    */
    /*    */
    public String toString() {
        /* 57 */
        return "ResponseData [respcode=" + this.respcode + ", respmsg=" + this.respmsg + ", respdata=" + this.respdata + "]";
        /*    */
    }
    /*    */
}
 
 
/* Location:              D:\jar\sign_util-1.0-SNAPSHOT.20240227.jar!\BOOT-INF\lib\SNAPSHOT-1.0.0.jar!\com\xjhys\edu\fee\sdk\model\ResponseDataVo.class
 * Java compiler version: 8 (52.0)
 * JD-Core Version:       1.1.3
 */