diff --git a/emis-biz/src/main/resources/mapper/EmisProblemTypeMapper.xml b/emis-biz/src/main/resources/mapper/EmisProblemTypeMapper.xml
index 43287432d..b1101767d 100644
--- a/emis-biz/src/main/resources/mapper/EmisProblemTypeMapper.xml
+++ b/emis-biz/src/main/resources/mapper/EmisProblemTypeMapper.xml
@@ -41,6 +41,9 @@
and create_time = #{createTime}
and update_by like concat('%', #{updateBy}, '%')
and update_time = #{updateTime}
+ and create_site like concat('%', #{createSite}, '%')
+ and update_site like concat('%', #{updateSite}, '%')
+
order by create_time desc
@@ -92,6 +95,8 @@
create_time,
update_by,
update_time,
+ create_site,
+ update_site,
#{id},
@@ -110,6 +115,8 @@
#{createTime},
#{updateBy},
#{updateTime},
+ #{createSite},
+ #{updateSite},
@@ -131,6 +138,8 @@
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
+ create_site = #{createSite},
+ update_site = #{updateSite},
where id = #{id}