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/CategoryCount.java |   99 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 99 insertions(+), 0 deletions(-)

diff --git a/exam-system/src/main/java/com/gkhy/exam/pay/dto/rep/CategoryCount.java b/exam-system/src/main/java/com/gkhy/exam/pay/dto/rep/CategoryCount.java
new file mode 100644
index 0000000..fd28584
--- /dev/null
+++ b/exam-system/src/main/java/com/gkhy/exam/pay/dto/rep/CategoryCount.java
@@ -0,0 +1,99 @@
+package com.gkhy.exam.pay.dto.rep;
+
+import java.math.BigDecimal;
+
+public class CategoryCount {
+    private Long id;
+    /**
+     * 工种名称
+     */
+    private String subjectName;
+    /**
+     * 单价
+     */
+    private BigDecimal amount;
+    /**
+     * 工种类别
+     */
+    private Integer categoryType;
+    /**
+     * 人数
+     */
+    private Integer num;
+    /**
+     * 总额
+     */
+    private BigDecimal totalMoney;
+    /**
+     * 上缴中央
+     */
+    private BigDecimal turnContent;
+    /**
+     * 自治区级
+     */
+    private BigDecimal autonomy;
+
+    public Long getId() {
+        return id;
+    }
+
+    public void setId(Long id) {
+        this.id = id;
+    }
+
+    public String getSubjectName() {
+        return subjectName;
+    }
+
+    public void setSubjectName(String subjectName) {
+        this.subjectName = subjectName;
+    }
+
+    public BigDecimal getAmount() {
+        return amount;
+    }
+
+    public void setAmount(BigDecimal amount) {
+        this.amount = amount;
+    }
+
+    public Integer getCategoryType() {
+        return categoryType;
+    }
+
+    public void setCategoryType(Integer categoryType) {
+        this.categoryType = categoryType;
+    }
+
+    public Integer getNum() {
+        return num;
+    }
+
+    public void setNum(Integer num) {
+        this.num = num;
+    }
+
+    public BigDecimal getTotalMoney() {
+        return totalMoney;
+    }
+
+    public void setTotalMoney(BigDecimal totalMoney) {
+        this.totalMoney = totalMoney;
+    }
+
+    public BigDecimal getTurnContent() {
+        return turnContent;
+    }
+
+    public void setTurnContent(BigDecimal turnContent) {
+        this.turnContent = turnContent;
+    }
+
+    public BigDecimal getAutonomy() {
+        return autonomy;
+    }
+
+    public void setAutonomy(BigDecimal autonomy) {
+        this.autonomy = autonomy;
+    }
+}

--
Gitblit v1.9.2