教育训练处考试制证系统后端
“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
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;
    }
}