教育训练处考试制证系统后端
“djh”
2025-03-06 6061c45849de0f3ac6d05fdfa2bac4b09c21179b
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
106
107
108
109
110
111
112
package com.gkhy.exam.pay.dto.rep;
 
import java.math.BigDecimal;
 
public class NonCategoryCount {
    private Long id;
    /**
     * 工种名称
     */
    private String subjectName;
    /**
     * 单价
     */
    private BigDecimal amount;
    /**
     * 工种类别
     */
    private Integer categoryType;
    /**
     * 人数
     */
    private Integer num;
    /**
     * 总额
     */
    private BigDecimal totalMoney;
    /**
     * 上缴中央
     */
    private BigDecimal turnContent;
    /**
     * 自治区级
     */
    private BigDecimal autonomy;
 
    /**
     * 地州
     */
    private BigDecimal prefecuture;
 
    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;
    }
 
    public BigDecimal getPrefecuture() {
        return prefecuture;
    }
 
    public void setPrefecuture(BigDecimal prefecuture) {
        this.prefecuture = prefecuture;
    }
}