From 6061c45849de0f3ac6d05fdfa2bac4b09c21179b Mon Sep 17 00:00:00 2001
From: “djh” <“3298565835@qq.com”>
Date: Thu, 06 Mar 2025 10:11:10 +0800
Subject: [PATCH] 考试缴费统计修改

---
 exam-system/src/main/java/com/gkhy/exam/pay/dto/rep/CateGoryTheory.java |   42 ++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 42 insertions(+), 0 deletions(-)

diff --git a/exam-system/src/main/java/com/gkhy/exam/pay/dto/rep/CateGoryTheory.java b/exam-system/src/main/java/com/gkhy/exam/pay/dto/rep/CateGoryTheory.java
new file mode 100644
index 0000000..80fac29
--- /dev/null
+++ b/exam-system/src/main/java/com/gkhy/exam/pay/dto/rep/CateGoryTheory.java
@@ -0,0 +1,42 @@
+package com.gkhy.exam.pay.dto.rep;
+
+import java.math.BigDecimal;
+
+public class CateGoryTheory {
+    private Integer payType;
+    private String payTypeName;
+    private Integer num;
+    private BigDecimal amount;
+
+    public Integer getPayType() {
+        return payType;
+    }
+
+    public void setPayType(Integer payType) {
+        this.payType = payType;
+    }
+
+    public String getPayTypeName() {
+        return payTypeName;
+    }
+
+    public void setPayTypeName(String payTypeName) {
+        this.payTypeName = payTypeName;
+    }
+
+    public Integer getNum() {
+        return num;
+    }
+
+    public void setNum(Integer num) {
+        this.num = num;
+    }
+
+    public BigDecimal getAmount() {
+        return amount;
+    }
+
+    public void setAmount(BigDecimal amount) {
+        this.amount = amount;
+    }
+}

--
Gitblit v1.9.2