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}
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+