From 28f6c716269ce5435b103137dd7ec1f1f9ab19ba Mon Sep 17 00:00:00 2001 From: 16639036659 <577530412@qq.com> Date: 星期一, 26 六月 2023 09:16:56 +0800 Subject: [PATCH] 临时提交-已经与app端对接完成 --- src/main/java/com/ruoyi/doublePrevention/entity/PreventRiskDangerCheckLog.java | 75 ++----------------------------------- 1 files changed, 4 insertions(+), 71 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..4844819 100644 --- a/src/main/java/com/ruoyi/doublePrevention/entity/PreventRiskDangerCheckLog.java +++ b/src/main/java/com/ruoyi/doublePrevention/entity/PreventRiskDangerCheckLog.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_log") public class PreventRiskDangerCheckLog { @@ -47,75 +48,7 @@ */ private Byte reportSwitch; - public Long getCheckId() { - return checkId; - } + private Long mobileCode; - 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; - } + private Long dangerCheckPointId; } -- Gitblit v1.9.2