From ef57094e91072ebe05bb3781e028d6d7ad8a0c45 Mon Sep 17 00:00:00 2001
From: heheng <heheng@123456>
Date: Mon, 17 Feb 2025 11:15:35 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/dev-20250116' into dev-20250116

---
 exam-system/src/main/java/com/gkhy/exam/pay/utils/ResponseDataVo.java |  105 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 105 insertions(+), 0 deletions(-)

diff --git a/exam-system/src/main/java/com/gkhy/exam/pay/utils/ResponseDataVo.java b/exam-system/src/main/java/com/gkhy/exam/pay/utils/ResponseDataVo.java
new file mode 100644
index 0000000..f52ebc7
--- /dev/null
+++ b/exam-system/src/main/java/com/gkhy/exam/pay/utils/ResponseDataVo.java
@@ -0,0 +1,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
+ */
\ No newline at end of file

--
Gitblit v1.9.2