package com.gkhy.safePlatform.riskCtrl.model.dto.resp;
|
|
import java.math.BigDecimal;
|
import java.time.LocalDateTime;
|
|
public class RiskSpiRepostRespDTO {
|
|
private Long id;
|
|
private Long eid;
|
|
private Long depId;
|
|
private Integer year;
|
|
private Integer month;
|
|
private BigDecimal val;
|
|
private LocalDateTime gmtCreate;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
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;
|
}
|
|
public LocalDateTime getGmtCreate() {
|
return gmtCreate;
|
}
|
|
public void setGmtCreate(LocalDateTime gmtCreate) {
|
this.gmtCreate = gmtCreate;
|
}
|
}
|