/* */
|
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
|
*/
|