郑永安
2023-06-19 2fcd97552d16718cc7997629fd637a73a5a4483f
src/main/java/com/gk/firework/Domain/Vo/SelfCheckReportVo.java
对比新文件
@@ -0,0 +1,125 @@
package com.gk.firework.Domain.Vo;
import java.math.BigDecimal;
import java.util.Date;
public class SelfCheckReportVo {
    //id
    private Long id;
    //企业ID
    private Long eid;
    private String ename;
    //隐患等级
    private Byte yhlevel;
    //隐患状态
    private Byte status;
    private BigDecimal price;
    private Date checktime;
    //整改期限
    private Date endtime;
    //隐患描述
    private String yhdesc;
    //责任人
    private String chargeperson;
    //解决方案
    private String solution;
    public Long getId() {
        return id;
    }
    public void setId(Long id) {
        this.id = id;
    }
    public Byte getYhlevel() {
        return yhlevel;
    }
    public void setYhlevel(Byte yhlevel) {
        this.yhlevel = yhlevel;
    }
    public String getYhdesc() {
        return yhdesc;
    }
    public BigDecimal getPrice() {
        return price;
    }
    public void setPrice(BigDecimal price) {
        this.price = price;
    }
    public void setYhdesc(String yhdesc) {
        this.yhdesc = yhdesc;
    }
    public String getEname() {
        return ename;
    }
    public void setEname(String ename) {
        this.ename = ename;
    }
    public String getChargeperson() {
        return chargeperson;
    }
    public void setChargeperson(String chargeperson) {
        this.chargeperson = chargeperson;
    }
    public Byte getStatus() {
        return status;
    }
    public void setStatus(Byte status) {
        this.status = status;
    }
    public Date getEndtime() {
        return endtime;
    }
    public void setEndtime(Date endtime) {
        this.endtime = endtime;
    }
    public String getSolution() {
        return solution;
    }
    public void setSolution(String solution) {
        this.solution = solution;
    }
    public Long getEid() {
        return eid;
    }
    public void setEid(Long eid) {
        this.eid = eid;
    }
    public Date getChecktime() {
        return checktime;
    }
    public void setChecktime(Date checktime) {
        this.checktime = checktime;
    }
}