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