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/PreventRiskDangerCheckLog.java |  175 ++++++++++++++++++----------------------------------------
 1 files changed, 54 insertions(+), 121 deletions(-)

diff --git a/src/main/java/com/ruoyi/doublePrevention/entity/PreventRiskDangerCheckLog.java b/src/main/java/com/ruoyi/doublePrevention/entity/PreventRiskDangerCheckLog.java
index 968f39e..af6db6d 100644
--- a/src/main/java/com/ruoyi/doublePrevention/entity/PreventRiskDangerCheckLog.java
+++ b/src/main/java/com/ruoyi/doublePrevention/entity/PreventRiskDangerCheckLog.java
@@ -1,121 +1,54 @@
-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_log")
-public class PreventRiskDangerCheckLog {
-
-    /**
-     * 主键
-     * */
-    @TableId(value = "id" , type = IdType.AUTO)
-    private Long id;
-    /**
-     * uuid
-     * */
-    private String uuid;
-    /**
-     * 排查任务id
-     * */
-    private Long checkId;
-    /**
-     * 排查结果:0-正常,1-存在隐患,2-未处理,3其他
-     * */
-    private Byte checkStatus;
-    /**
-     * job id
-     * */
-    private Long jobId;
-    /**
-     * 同步时间
-     */
-    private Date reportTime;
-    /**
-     * 同步数据修改时间
-     */
-    private Date updateReportDataTime;
-    /**
-     * 上报状态 1-待上报;2-已上报;3-不上报;4-变更需上传
-     */
-    private Byte reportStatus;
-    /**
-     * 上报开关 1-上报;2-不上报
-     */
-    private Byte reportSwitch;
-
-    public Long getCheckId() {
-        return checkId;
-    }
-
-    public void setCheckId(Long checkId) {
-        this.checkId = checkId;
-    }
-
-    public Long getId() {
-        return id;
-    }
-
-    public void setId(Long id) {
-        this.id = id;
-    }
-
-    public String getUuid() {
-        return uuid;
-    }
-
-    public void setUuid(String uuid) {
-        this.uuid = uuid;
-    }
-
-    public Byte getCheckStatus() {
-        return checkStatus;
-    }
-
-    public void setCheckStatus(Byte checkStatus) {
-        this.checkStatus = checkStatus;
-    }
-
-    public Long getJobId() {
-        return jobId;
-    }
-
-    public void setJobId(Long jobId) {
-        this.jobId = jobId;
-    }
-
-    public Date getReportTime() {
-        return reportTime;
-    }
-
-    public void setReportTime(Date reportTime) {
-        this.reportTime = reportTime;
-    }
-
-    public Date getUpdateReportDataTime() {
-        return updateReportDataTime;
-    }
-
-    public void setUpdateReportDataTime(Date updateReportDataTime) {
-        this.updateReportDataTime = updateReportDataTime;
-    }
-
-    public Byte getReportStatus() {
-        return reportStatus;
-    }
-
-    public void setReportStatus(Byte reportStatus) {
-        this.reportStatus = reportStatus;
-    }
-
-    public Byte getReportSwitch() {
-        return reportSwitch;
-    }
-
-    public void setReportSwitch(Byte reportSwitch) {
-        this.reportSwitch = reportSwitch;
-    }
-}
+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;
+
+import java.util.Date;
+@Data
+@TableName("prevent_risk_danger_check_log")
+public class PreventRiskDangerCheckLog {
+
+    /**
+     * 主键
+     * */
+    @TableId(value = "id" , type = IdType.AUTO)
+    private Long id;
+    /**
+     * uuid
+     * */
+    private String uuid;
+    /**
+     * 排查任务id
+     * */
+    private Long checkId;
+    /**
+     * 排查结果:0-正常,1-存在隐患,2-未处理,3其他
+     * */
+    private Byte checkStatus;
+    /**
+     * job id
+     * */
+    private Long jobId;
+    /**
+     * 同步时间
+     */
+    private Date reportTime;
+    /**
+     * 同步数据修改时间
+     */
+    private Date updateReportDataTime;
+    /**
+     * 上报状态 1-待上报;2-已上报;3-不上报;4-变更需上传
+     */
+    private Byte reportStatus;
+    /**
+     * 上报开关 1-上报;2-不上报
+     */
+    private Byte reportSwitch;
+
+    private Long mobileCode;
+
+    private Long  dangerCheckPointId;
+}

--
Gitblit v1.9.2