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/Vo/HiddenDangerTableRow.java | 292 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 292 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/gk/firework/Domain/Vo/HiddenDangerTableRow.java b/src/main/java/com/gk/firework/Domain/Vo/HiddenDangerTableRow.java new file mode 100644 index 0000000..402a3f4 --- /dev/null +++ b/src/main/java/com/gk/firework/Domain/Vo/HiddenDangerTableRow.java @@ -0,0 +1,292 @@ +package com.gk.firework.Domain.Vo; + +import com.fasterxml.jackson.annotation.JsonFormat; +import org.springframework.web.multipart.MultipartFile; + +import java.io.Serializable; +import java.util.Date; + +public class HiddenDangerTableRow implements Serializable { + + + private String parentmenuid; + + private String checkcontent; + + private String checktypeid; + + private String checkcriteria; + + private String basis; + + private String checktype; + + private String checkresult1; + + private Long result1; + + private boolean qualified; + + private String checkresult0; + + private Long result0; + + private boolean unqualified; + + private Unqualified answer = new Unqualified(); + + + /** + * @Description: 不合格|合格对象 + */ + public static class Unqualified { + + private Long id; + + /** + * 自检结果id resultid + **/ + private Long resultid; + + /** + * 发现日期 findtime + **/ + private Date findtime; + + /** + * 隐患级别(1一般,2重大) level + **/ + private Integer level; + + /** + * 隐患描述(备用) memo + **/ + private String memo; + + /** + * 整改情况(1正在整改,2整改到位) rectifystatus + **/ + private Integer rectifystatus; + + /** + * 整改期限 rectifydeadline + **/ + @JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd") + private Date rectifydeadline; + + /** + * 整改完成时间 rectifycompletedate + **/ + @JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd") + private Date rectifycompletedate; + + /** + * 整改措施(1立即整改,2限期整改,3停产停业整顿 ) rectifymeasure + **/ + private Integer rectifymeasure; + + /** + * 整改负责人 rectifyprincipal + **/ + private String rectifyprincipal; + + + private String url; + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getUrl() { + return url; + } + + public void setUrl(String url) { + this.url = url; + } + + public Long getResultid() { + return resultid; + } + + public void setResultid(Long resultid) { + this.resultid = resultid; + } + + public Date getFindtime() { + return findtime; + } + + public void setFindtime(Date findtime) { + this.findtime = findtime; + } + + public Integer getLevel() { + return level; + } + + public void setLevel(Integer level) { + this.level = level; + } + + public String getMemo() { + return memo; + } + + public void setMemo(String memo) { + this.memo = memo; + } + + public Integer getRectifystatus() { + return rectifystatus; + } + + public void setRectifystatus(Integer rectifystatus) { + this.rectifystatus = rectifystatus; + } + + public Date getRectifydeadline() { + return rectifydeadline; + } + + public void setRectifydeadline(Date rectifydeadline) { + this.rectifydeadline = rectifydeadline; + } + + public Date getRectifycompletedate() { + return rectifycompletedate; + } + + public void setRectifycompletedate(Date rectifycompletedate) { + this.rectifycompletedate = rectifycompletedate; + } + + public Integer getRectifymeasure() { + return rectifymeasure; + } + + public void setRectifymeasure(Integer rectifymeasure) { + this.rectifymeasure = rectifymeasure; + } + + public String getRectifyprincipal() { + return rectifyprincipal; + } + + public void setRectifyprincipal(String rectifyprincipal) { + this.rectifyprincipal = rectifyprincipal; + } + + + } + + public String getCheckcontent() { + return checkcontent; + } + + public void setCheckcontent(String checkcontent) { + this.checkcontent = checkcontent; + } + + public String getCheckcriteria() { + return checkcriteria; + } + + public void setCheckcriteria(String checkcriteria) { + this.checkcriteria = checkcriteria; + } + + public String getBasis() { + return basis; + } + + public void setBasis(String basis) { + this.basis = basis; + } + + public String getChecktype() { + return checktype; + } + + public void setChecktype(String checktype) { + this.checktype = checktype; + } + + public String getCheckresult1() { + return checkresult1; + } + + public void setCheckresult1(String checkresult1) { + this.checkresult1 = checkresult1; + } + + public String getCheckresult0() { + return checkresult0; + } + + public void setCheckresult0(String checkresult0) { + this.checkresult0 = checkresult0; + } + + public boolean isQualified() { + return qualified; + } + + public void setQualified(boolean qualified) { + this.qualified = qualified; + } + + public boolean isUnqualified() { + return unqualified; + } + + public void setUnqualified(boolean unqualified) { + this.unqualified = unqualified; + } + + public Long getResult1() { + return result1; + } + + public void setResult1(Long result1) { + this.result1 = result1; + } + + public Long getResult0() { + return result0; + } + + public void setResult0(Long result0) { + this.result0 = result0; + } + + public Unqualified getAnswer() { + return answer; + } + + public void setAnswer(Unqualified answer) { + this.answer = answer; + } + + public String getParentmenuid() { + return parentmenuid; + } + + public void setParentmenuid(String parentmenuid) { + this.parentmenuid = parentmenuid; + } + + + public String getChecktypeid() { + return checktypeid; + } + + public void setChecktypeid(String checktypeid) { + this.checktypeid = checktypeid; + } +} + -- Gitblit v1.9.2