From c6e3a4fde358f94cdccc0819c8e8236b0e3df747 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=96=B9=E4=BA=AE?= Date: Fri, 23 Jan 2026 11:17:52 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=88=86=E6=9E=90=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../background/vo/SjProjectManageVo.java | 34 ++++++++++- .../resources/mapper/SjEfficiencyMapper.xml | 8 ++- .../mapper/SjProjectManageMapper.xml | 61 ++++++++++--------- 3 files changed, 70 insertions(+), 33 deletions(-) diff --git a/securitycontrol-commons/securitycontrol-commons-entity/src/main/java/com/securitycontrol/entity/background/vo/SjProjectManageVo.java b/securitycontrol-commons/securitycontrol-commons-entity/src/main/java/com/securitycontrol/entity/background/vo/SjProjectManageVo.java index cf8f975..9bf39f0 100644 --- a/securitycontrol-commons/securitycontrol-commons-entity/src/main/java/com/securitycontrol/entity/background/vo/SjProjectManageVo.java +++ b/securitycontrol-commons/securitycontrol-commons-entity/src/main/java/com/securitycontrol/entity/background/vo/SjProjectManageVo.java @@ -23,17 +23,49 @@ public class SjProjectManageVo { */ private String dataContent; - + /** + * 作业内容 + */ private String workContent; + /** + * 风险等级 + */ private String riskLevel; + /** + * 作业开始时间 + */ private String workStartTime; + /** + * 作业结束时间 + */ private String workEndTime; + /** + * 计划状态 + */ private String planStatus; + /** + * 今日风险 + */ private String todayRisk; + /** + * 备注 + */ private String remark; + /** + * 措施 + */ private String measureData; + /** + * 附件 + */ private String filePath; + /** + * 创建时间 + */ private String createTime; + /** + * 修改时间 + */ private String updateTime; private String bidCode; diff --git a/securitycontrol-model/securitycontrol-background/src/main/resources/mapper/SjEfficiencyMapper.xml b/securitycontrol-model/securitycontrol-background/src/main/resources/mapper/SjEfficiencyMapper.xml index 94b3cea..4fd5b20 100644 --- a/securitycontrol-model/securitycontrol-background/src/main/resources/mapper/SjEfficiencyMapper.xml +++ b/securitycontrol-model/securitycontrol-background/src/main/resources/mapper/SjEfficiencyMapper.xml @@ -40,7 +40,9 @@ data_type = '整体效能分析' - and tx_time =#{keyWord} + and (tx_time =#{keyWord} or + content like concat('%',#{keyWord},'%') + ) @@ -71,9 +73,9 @@ where id= #{id} - + diff --git a/securitycontrol-model/securitycontrol-background/src/main/resources/mapper/SjProjectManageMapper.xml b/securitycontrol-model/securitycontrol-background/src/main/resources/mapper/SjProjectManageMapper.xml index 1b831db..41458f2 100644 --- a/securitycontrol-model/securitycontrol-background/src/main/resources/mapper/SjProjectManageMapper.xml +++ b/securitycontrol-model/securitycontrol-background/src/main/resources/mapper/SjProjectManageMapper.xml @@ -1,36 +1,36 @@ - - - - - - - - - - - - + + insert into sj_project_manage( + data_type,date_time,data_money,data_content + )values (#{dataType},#{dateTime},#{dataMoney},#{dataContent}) + + + update sj_project_manage set + date_time=#{dateTime},data_money=#{dataMoney},data_content=#{dataContent} + + + delete from sj_project_manage where id=#{id} + - - - - - - - - - - - - - - + + + + delete from sj_new_async_warn where id=#{id} - +