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;
|
}
|
}
|