package com.gkhy.safePlatform.riskCtrl.model.dto.req;
|
|
import java.math.BigDecimal;
|
|
public class CreateNewRespSpiReportReqDTO {
|
|
private Long eid;
|
|
private Long depId;
|
|
private Integer year;
|
|
private Integer month;
|
|
private BigDecimal val;
|
|
public Long getEid() {
|
return eid;
|
}
|
|
public void setEid(Long eid) {
|
this.eid = eid;
|
}
|
|
public Long getDepId() {
|
return depId;
|
}
|
|
public void setDepId(Long depId) {
|
this.depId = depId;
|
}
|
|
public Integer getYear() {
|
return year;
|
}
|
|
public void setYear(Integer year) {
|
this.year = year;
|
}
|
|
public Integer getMonth() {
|
return month;
|
}
|
|
public void setMonth(Integer month) {
|
this.month = month;
|
}
|
|
public BigDecimal getVal() {
|
return val;
|
}
|
|
public void setVal(BigDecimal val) {
|
this.val = val;
|
}
|
}
|