From 9015e720487b737743232b0b3aa464c2ac9e8d17 Mon Sep 17 00:00:00 2001 From: heheng <heheng@123456> Date: 星期五, 15 十一月 2024 17:31:24 +0800 Subject: [PATCH] 修改请求地址 --- src/main/java/com/ruoyi/doublePrevention/entity/PreventRiskDangerCheckAndMeasure.java | 144 +++++++++++++++-------------------------------- 1 files changed, 47 insertions(+), 97 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..2dacf54 100644 --- a/src/main/java/com/ruoyi/doublePrevention/entity/PreventRiskDangerCheckAndMeasure.java +++ b/src/main/java/com/ruoyi/doublePrevention/entity/PreventRiskDangerCheckAndMeasure.java @@ -1,97 +1,47 @@ -package com.ruoyi.doublePrevention.entity; - -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableId; -import com.baomidou.mybatisplus.annotation.TableName; - -import java.util.Date; - -@TableName("prevent_risk_danger_check_and_measure") -public class PreventRiskDangerCheckAndMeasure { - - /** - * 主键 - * */ - @TableId(value = "id" , type = IdType.AUTO) - private Long id; - /** - * 核查任务id - * */ - private Long checkId; - /** - * 核查任务附属表id - * */ - private Long dangerCheckPointId; - /** - * 核查点id - * */ - private Long baseCheckPointId; - /** - * 管控措施id - * */ - private Long controlMeasureId; - /** - * job id - * */ - private String checkContent; - /** - * 排查结果:0-正常,1-存在隐患,2-未处理,3其他 - * */ - private Byte checkResult; - - 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; - } -} +package com.ruoyi.doublePrevention.entity; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; + + +@Data +@TableName("prevent_risk_danger_check_and_measure") +public class PreventRiskDangerCheckAndMeasure { + + /** + * 主键 + * */ + @TableId(value = "id" , type = IdType.AUTO) + private Long id; + /** + * 核查任务id + * */ + private Long checkId; + /** + * 核查任务附属表id + * */ + private Long dangerCheckPointId; + /** + * 核查点id + * */ + private Long baseCheckPointId; + /** + * 管控措施id + * */ + private Long controlMeasureId; + /** + * job id + * */ + private String checkContent; + /** + * 排查结果:0-正常,1-存在隐患,2-未处理,3其他 + * */ + private Byte checkResult; + /** + * 排查上报信息 + * */ + private String checkDesc; + +} -- Gitblit v1.9.2