From 303223dc45f41cdfb14364a7aa7b643f91421b76 Mon Sep 17 00:00:00 2001 From: 16639036659 <577530412@qq.com> Date: 星期三, 08 十一月 2023 16:19:50 +0800 Subject: [PATCH] 添加检查上报 --- src/main/java/com/ruoyi/doublePrevention/entity/PreventRiskDangerCheckAndMeasure.java | 62 +++---------------------------- 1 files changed, 6 insertions(+), 56 deletions(-) diff --git a/src/main/java/com/ruoyi/doublePrevention/entity/PreventRiskDangerCheckAndMeasure.java b/src/main/java/com/ruoyi/doublePrevention/entity/PreventRiskDangerCheckAndMeasure.java index e21a6b8..ccdc213 100644 --- a/src/main/java/com/ruoyi/doublePrevention/entity/PreventRiskDangerCheckAndMeasure.java +++ b/src/main/java/com/ruoyi/doublePrevention/entity/PreventRiskDangerCheckAndMeasure.java @@ -3,9 +3,10 @@ import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; -import java.util.Date; +@Data @TableName("prevent_risk_danger_check_and_measure") public class PreventRiskDangerCheckAndMeasure { @@ -38,60 +39,9 @@ * 排查结果:0-正常,1-存在隐患,2-未处理,3其他 * */ private Byte checkResult; + /** + * 排查上报信息 + * */ + private String checkDesc; - public Long getId() { - return id; - } - - public void setId(Long id) { - this.id = id; - } - - public Long getDangerCheckPointId() { - return dangerCheckPointId; - } - - public void setDangerCheckPointId(Long dangerCheckPointId) { - this.dangerCheckPointId = dangerCheckPointId; - } - - public Long getCheckId() { - return checkId; - } - - public void setCheckId(Long checkId) { - this.checkId = checkId; - } - - public Long getBaseCheckPointId() { - return baseCheckPointId; - } - - public void setBaseCheckPointId(Long baseCheckPointId) { - this.baseCheckPointId = baseCheckPointId; - } - - public Long getControlMeasureId() { - return controlMeasureId; - } - - public void setControlMeasureId(Long controlMeasureId) { - this.controlMeasureId = controlMeasureId; - } - - public String getCheckContent() { - return checkContent; - } - - public void setCheckContent(String checkContent) { - this.checkContent = checkContent; - } - - public Byte getCheckResult() { - return checkResult; - } - - public void setCheckResult(Byte checkResult) { - this.checkResult = checkResult; - } } -- Gitblit v1.9.2