package com.gkhy.safePlatform.riskCtrl.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import java.math.BigDecimal; import java.time.LocalDateTime; @TableName("risk_spi_report") public class RiskSpiReport { @TableId(type = IdType.AUTO) private Long id; //所属企业ID private Long eid; //部门ID private Long depId; //所属年份 private Integer year; //所属月份 private Integer month; //SPI值 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; } }