From 40e6b02f26a7c0a1911a69b951c948f582df4032 Mon Sep 17 00:00:00 2001 From: heheng <475597332@qq.com> Date: 星期五, 20 六月 2025 13:23:18 +0800 Subject: [PATCH] 准东数据推送优化 --- src/main/java/com/ruoyi/doublePrevention/entity/CJReport/PreventCJReportRiskControlMeasure.java | 24 ++++++++++++++++++++++++ 1 files changed, 24 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/ruoyi/doublePrevention/entity/CJReport/PreventCJReportRiskControlMeasure.java b/src/main/java/com/ruoyi/doublePrevention/entity/CJReport/PreventCJReportRiskControlMeasure.java index 5a60e91..3c77ae2 100644 --- a/src/main/java/com/ruoyi/doublePrevention/entity/CJReport/PreventCJReportRiskControlMeasure.java +++ b/src/main/java/com/ruoyi/doublePrevention/entity/CJReport/PreventCJReportRiskControlMeasure.java @@ -87,6 +87,15 @@ */ private Long riskMeasureId; + /** + * 上报时间 + */ + private Date zhunReportTime; + /** + * 上报状态 1-待上报;2-已上报;3-不上报 + */ + private Byte zhunReportStatus; + public Long getRiskMeasureId() { return riskMeasureId; } @@ -240,5 +249,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