package com.gkhy.safePlatform.riskCtrl.model.dto.resp;
|
|
import java.math.BigDecimal;
|
|
public class SpiValueRespDTO {
|
|
private Long depId;
|
|
private String depName;
|
|
private Byte depLevel;
|
|
private Integer year;
|
|
private Integer month;
|
|
private BigDecimal spiVal;
|
|
public Long getDepId() {
|
return depId;
|
}
|
|
public void setDepId(Long depId) {
|
this.depId = depId;
|
}
|
|
public String getDepName() {
|
return depName;
|
}
|
|
public void setDepName(String depName) {
|
this.depName = depName;
|
}
|
|
public Byte getDepLevel() {
|
return depLevel;
|
}
|
|
public void setDepLevel(Byte depLevel) {
|
this.depLevel = depLevel;
|
}
|
|
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 getSpiVal() {
|
return spiVal;
|
}
|
|
public void setSpiVal(BigDecimal spiVal) {
|
this.spiVal = spiVal;
|
}
|
}
|