diff --git a/doc/kingbase_trouble b/doc/kingbase_trouble
index 25436fc..fb7d7d1 100644
--- a/doc/kingbase_trouble
+++ b/doc/kingbase_trouble
@@ -1,4 +1,3 @@
1.系统工具——————代码生成
2.涉密人员统计——————打印
-3.检查结果管理——————报告人单位
4.文件管理若干问题
diff --git a/ruoyi-admin/src/main/resources/templates/system/train/detail.html b/ruoyi-admin/src/main/resources/templates/system/train/detail.html
index e829d9c..8d3ff6b 100644
--- a/ruoyi-admin/src/main/resources/templates/system/train/detail.html
+++ b/ruoyi-admin/src/main/resources/templates/system/train/detail.html
@@ -92,7 +92,9 @@
diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/TdCheck.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/TdCheck.java
index 61b2d7b..d159835 100644
--- a/ruoyi-system/src/main/java/com/ruoyi/system/domain/TdCheck.java
+++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/TdCheck.java
@@ -28,6 +28,10 @@ public class TdCheck extends BaseEntity
@Excel(name = "单位")
private String depart;
+ public void setDepart(String depart) {
+ this.depart = depart;
+ }
+
/** 检查开始时间 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "检查开始时间", width = 30, dateFormat = "yyyy-MM-dd")
diff --git a/ruoyi-system/src/main/resources/mapper/system/SysPostMapper.xml b/ruoyi-system/src/main/resources/mapper/system/SysPostMapper.xml
index 547eaf4..eb977b4 100644
--- a/ruoyi-system/src/main/resources/mapper/system/SysPostMapper.xml
+++ b/ruoyi-system/src/main/resources/mapper/system/SysPostMapper.xml
@@ -19,7 +19,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
select post_id, post_code, post_name, post_sort, status, create_by, create_time, remark
- from sys_post
+ from zhky."public".sys_post
- delete from sys_post where post_id in
+ delete from zhky."public".sys_post where post_id in
#{postId}
- update sys_post
+ update zhky."public".sys_post
post_code = #{postCode},
post_name = #{postName},
@@ -86,7 +86,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- insert into sys_post(
+ insert into zhky."public".sys_post(
post_id,
post_code,
post_name,
diff --git a/ruoyi-system/src/main/resources/mapper/system/SysUserPostMapper.xml b/ruoyi-system/src/main/resources/mapper/system/SysUserPostMapper.xml
index 2b90bc4..03c9b9a 100644
--- a/ruoyi-system/src/main/resources/mapper/system/SysUserPostMapper.xml
+++ b/ruoyi-system/src/main/resources/mapper/system/SysUserPostMapper.xml
@@ -10,22 +10,22 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- delete from sys_user_post where user_id=#{userId}
+ delete from zhky."public".sys_user_post where user_id=#{userId}
- select count(1) from sys_user_post where post_id=#{postId}
+ select count(1) from zhky."public".sys_user_post where post_id=#{postId}
- delete from sys_user_post where user_id in
+ delete from zhky."public".sys_user_post where user_id in
#{userId}
- insert into sys_user_post(user_id, post_id) values
+ insert into zhky."public".sys_user_post(user_id, post_id) values
(#{item.userId},#{item.postId})
diff --git a/ruoyi-system/src/main/resources/mapper/system/TdFileReceiveMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TdFileReceiveMapper.xml
index 56a1854..6cc9440 100644
--- a/ruoyi-system/src/main/resources/mapper/system/TdFileReceiveMapper.xml
+++ b/ruoyi-system/src/main/resources/mapper/system/TdFileReceiveMapper.xml
@@ -29,7 +29,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- select receive_id, file_id, file_name, provide_depart, provide_date, receive_departid, receive_state, receive_userid, receive_date, extract_state, extract_departid, extract_userid, extract_date, destory_state,destory_address, destory_depart, destory_username, destory_style, destory_count, destory_date, remark from td_file_receive
+ select receive_id, file_id, file_name, provide_depart, provide_date, receive_departid, receive_state, receive_userid, receive_date, extract_state, extract_departid, extract_userid, extract_date, destory_state,destory_address, destory_depart, destory_username, destory_style, destory_count, destory_date, remark from zhky."public".td_file_receive
@@ -75,7 +75,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- insert into td_file_receive
+ insert into zhky."public".td_file_receive
file_id,
file_name,
@@ -123,7 +123,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- update td_file_receive
+ update zhky."public".td_file_receive
file_id = #{fileId},
file_name = #{fileName},
@@ -150,11 +150,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- delete from td_file_receive where receive_id = #{receiveId}
+ delete from zhky."public".td_file_receive where receive_id = #{receiveId}
- delete from td_file_receive where receive_id in
+ delete from zhky."public".td_file_receive where receive_id in
#{receiveId}