From f8606e6c37bbc815b59d0452fd7c3ecb0dcb6cef Mon Sep 17 00:00:00 2001
From: heheng <475597332@qq.com>
Date: 星期三, 25 六月 2025 16:26:26 +0800
Subject: [PATCH] 修复sql
---
src/main/java/com/ruoyi/doublePrevention/entity/CJReport/PreventCJReportRiskEvent.java | 23 +++++++++++++++++++++++
1 files changed, 23 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/ruoyi/doublePrevention/entity/CJReport/PreventCJReportRiskEvent.java b/src/main/java/com/ruoyi/doublePrevention/entity/CJReport/PreventCJReportRiskEvent.java
index b3a9bb3..6a2462e 100644
--- a/src/main/java/com/ruoyi/doublePrevention/entity/CJReport/PreventCJReportRiskEvent.java
+++ b/src/main/java/com/ruoyi/doublePrevention/entity/CJReport/PreventCJReportRiskEvent.java
@@ -66,6 +66,14 @@
* 风险事件id
*/
private Long riskEventId;
+ /**
+ * 上报时间
+ */
+ private Date zhunReportTime;
+ /**
+ * 上报状态 1-待上报;2-已上报;3-不上报
+ */
+ private Byte zhunReportStatus;
public Long getRiskEventId() {
@@ -179,5 +187,20 @@
this.dataSource = dataSource;
}
+ public Date getZhunReportTime() {
+ return zhunReportTime;
+ }
+
+ public void setZhunReportTime(Date zhunReportTime) {
+ this.zhunReportTime = zhunReportTime;
+ }
+
+ public Byte getZhunReportStatus() {
+ return zhunReportStatus;
+ }
+
+ public void setZhunReportStatus(Byte zhunReportStatus) {
+ this.zhunReportStatus = zhunReportStatus;
+ }
}
--
Gitblit v1.9.2