郑永安
2023-08-23 0a9ed7b7488de66a50799f79369d7806910ae00a
src/main/java/com/gk/hotwork/Domain/SafetyFacilityInspection.java
@@ -3,6 +3,8 @@
import java.io.Serializable;
import java.util.Date;
import org.springframework.data.annotation.Transient;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
@@ -50,7 +52,29 @@
    /** 联系电话  telephone **/
    private String telephone;
    /** 企业名称  company **/
    private String company;
    /** 受理时间  accept_ time **/
    private Date acceptTime;
    /** 自定义评审开始时间  review_time **/
    private Date reviewTime;
    /** 自定义审查开始时间  examine_time **/
    private Date examineTime;
    /** 补正告知书  correctpdf **/
    private String correctpdf;
    /** 审查意见书编号  examine_pageno **/
    private String examinePageno;
    /** 审查耗时(-天-时-分)  examine_taketime **/
    private String examineTaketime;
    /**   主键id  id   **/
    public Long getId() {
        return id;
@@ -170,4 +194,87 @@
    public void setTelephone(String telephone) {
        this.telephone = telephone == null ? null : telephone.trim();
    }
    /**   企业名称  company   **/
    public String getCompany() {
        return company;
    }
    /**   企业名称  company   **/
    public void setCompany(String company) {
        this.company = company == null ? null : company.trim();
    }
    /**   受理时间  accept_ time   **/
    public Date getAcceptTime() {
        return acceptTime;
    }
    /**   受理时间  accept_ time   **/
    public void setAcceptTime(Date acceptTime) {
        this.acceptTime = acceptTime;
    }
    /**   自定义评审开始时间  review_time   **/
    public Date getReviewTime() {
        return reviewTime;
    }
    /**   自定义评审开始时间  review_time   **/
    public void setReviewTime(Date reviewTime) {
        this.reviewTime = reviewTime;
    }
    /**   自定义审查开始时间  examine_time   **/
    public Date getExamineTime() {
        return examineTime;
    }
    /**   自定义审查开始时间  examine_time   **/
    public void setExamineTime(Date examineTime) {
        this.examineTime = examineTime;
    }
    /**   补正告知书  correctpdf   **/
    public String getCorrectpdf() {
        return correctpdf;
    }
    /**   补正告知书  correctpdf   **/
    public void setCorrectpdf(String correctpdf) {
        this.correctpdf = correctpdf == null ? null : correctpdf.trim();
    }
    /**   审查意见书编号  examine_pageno   **/
    public String getExaminePageno() {
        return examinePageno;
    }
    /**   审查意见书编号  examine_pageno   **/
    public void setExaminePageno(String examinePageno) {
        this.examinePageno = examinePageno == null ? null : examinePageno.trim();
    }
    /**   专家姓名  expertName **/
    @Transient
    private String expertName;
    @Transient
   public String getExpertName() {
      return expertName;
   }
   public void setExpertName(String expertName) {
      this.expertName = expertName;
   }
    /**   审查耗时(-天-时-分)  examine_taketime   **/
    public String getExamineTaketime() {
        return examineTaketime;
    }
    /**   审查耗时(-天-时-分)  examine_taketime   **/
    public void setExamineTaketime(String examineTaketime) {
        this.examineTaketime = examineTaketime == null ? null : examineTaketime.trim();
    }
}