From f65443d8abeaedc9d102324565e8368e7c9d90c8 Mon Sep 17 00:00:00 2001
From: 郑永安 <zyazyz250@sina.com>
Date: 星期一, 19 六月 2023 14:41:54 +0800
Subject: [PATCH] commit

---
 src/main/java/com/gk/firework/Domain/HiddenDangerReportDetail.java |  207 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 207 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/gk/firework/Domain/HiddenDangerReportDetail.java b/src/main/java/com/gk/firework/Domain/HiddenDangerReportDetail.java
new file mode 100644
index 0000000..d264fc1
--- /dev/null
+++ b/src/main/java/com/gk/firework/Domain/HiddenDangerReportDetail.java
@@ -0,0 +1,207 @@
+package com.gk.firework.Domain;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+
+import java.io.Serializable;
+import java.util.Date;
+
+@TableName("hiddendangerreportdetail")
+public class HiddenDangerReportDetail implements Serializable {
+
+    @TableField(exist = false)
+    private static final long serialVersionUID = 1L;
+
+    /** 主键id  id **/
+    @TableId(type = IdType.AUTO)
+    private Long id;
+
+    /** 自检结果id  resultid **/
+    private Long resultid;
+
+    private Boolean isqualified;
+
+    /** 自检报告单号  reportcode **/
+    private String reportcode;
+
+    /** 发现日期  findtime **/
+    private Date findtime;
+
+    /** 隐患级别(1一般,2重大)  level **/
+    private Integer level;
+
+    /** 隐患描述(备用)  memo **/
+    private String memo;
+
+    /** 整改情况(1正在整改,2整改到位)  rectifystatus **/
+    private Integer rectifystatus;
+
+    /** 整改期限  rectifydeadline **/
+    private Date rectifydeadline;
+
+    /** 整改完成时间  rectifycompletedate **/
+    private Date rectifycompletedate;
+
+    /** 整改措施(1立即整改,2限期整改,3停产停业整顿 )  rectifymeasure **/
+    private Integer rectifymeasure;
+
+    /** 整改负责人  rectifyprincipal **/
+    private String rectifyprincipal;
+
+    /** 重大隐患报告  url **/
+    private String url;
+
+    /**  检查类型id **/
+    private String checktypeid;
+
+    /** 有效标识  validflag **/
+    private Boolean validflag;
+
+    /**   主键id  id   **/
+    public Long getId() {
+        return id;
+    }
+
+    /**   主键id  id   **/
+    public void setId(Long id) {
+        this.id = id;
+    }
+
+    /**   自检结果id  resultid   **/
+    public Long getResultid() {
+        return resultid;
+    }
+
+    /**   自检结果id  resultid   **/
+    public void setResultid(Long resultid) {
+        this.resultid = resultid;
+    }
+
+    /**   自检报告单号  reportcode   **/
+    public String getReportcode() {
+        return reportcode;
+    }
+
+    /**   自检报告单号  reportcode   **/
+    public void setReportcode(String reportcode) {
+        this.reportcode = reportcode == null ? null : reportcode.trim();
+    }
+
+    /**   发现日期  findtime   **/
+    public Date getFindtime() {
+        return findtime;
+    }
+
+    /**   发现日期  findtime   **/
+    public void setFindtime(Date findtime) {
+        this.findtime = findtime;
+    }
+
+    /**   隐患级别(1一般,2重大)  level   **/
+    public Integer getLevel() {
+        return level;
+    }
+
+    /**   隐患级别(1一般,2重大)  level   **/
+    public void setLevel(Integer level) {
+        this.level = level;
+    }
+
+    /**   隐患描述(备用)  memo   **/
+    public String getMemo() {
+        return memo;
+    }
+
+    /**   隐患描述(备用)  memo   **/
+    public void setMemo(String memo) {
+        this.memo = memo == null ? null : memo.trim();
+    }
+
+    /**   整改情况(1正在整改,2整改到位)  rectifystatus   **/
+    public Integer getRectifystatus() {
+        return rectifystatus;
+    }
+
+    /**   整改情况(1正在整改,2整改到位)  rectifystatus   **/
+    public void setRectifystatus(Integer rectifystatus) {
+        this.rectifystatus = rectifystatus;
+    }
+
+    /**   整改期限  rectifydeadline   **/
+    public Date getRectifydeadline() {
+        return rectifydeadline;
+    }
+
+    /**   整改期限  rectifydeadline   **/
+    public void setRectifydeadline(Date rectifydeadline) {
+        this.rectifydeadline = rectifydeadline;
+    }
+
+    /**   整改完成时间  rectifycompletedate   **/
+    public Date getRectifycompletedate() {
+        return rectifycompletedate;
+    }
+
+    /**   整改完成时间  rectifycompletedate   **/
+    public void setRectifycompletedate(Date rectifycompletedate) {
+        this.rectifycompletedate = rectifycompletedate;
+    }
+
+    /**   整改措施(1立即整改,2限期整改,3停产停业整顿 )  rectifymeasure   **/
+    public Integer getRectifymeasure() {
+        return rectifymeasure;
+    }
+
+    /**   整改措施(1立即整改,2限期整改,3停产停业整顿 )  rectifymeasure   **/
+    public void setRectifymeasure(Integer rectifymeasure) {
+        this.rectifymeasure = rectifymeasure;
+    }
+
+    /**   整改负责人  rectifyprincipal   **/
+    public String getRectifyprincipal() {
+        return rectifyprincipal;
+    }
+
+    /**   整改负责人  rectifyprincipal   **/
+    public void setRectifyprincipal(String rectifyprincipal) {
+        this.rectifyprincipal = rectifyprincipal == null ? null : rectifyprincipal.trim();
+    }
+
+    /**   重大隐患报告  url   **/
+    public String getUrl() {
+        return url;
+    }
+
+    /**   重大隐患报告  url   **/
+    public void setUrl(String url) {
+        this.url = url == null ? null : url.trim();
+    }
+
+    /**   有效标识  validflag   **/
+    public Boolean getValidflag() {
+        return validflag;
+    }
+
+    /**   有效标识  validflag   **/
+    public void setValidflag(Boolean validflag) {
+        this.validflag = validflag;
+    }
+
+    public Boolean getIsqualified() {
+        return isqualified;
+    }
+
+    public void setIsqualified(Boolean isqualified) {
+        this.isqualified = isqualified;
+    }
+
+    public String getChecktypeid() {
+        return checktypeid;
+    }
+
+    public void setChecktypeid(String checktypeid) {
+        this.checktypeid = checktypeid;
+    }
+}
\ No newline at end of file

--
Gitblit v1.9.2