Commit 73d3d25b by guojuxing

sql

parent 7913464c
......@@ -208,5 +208,5 @@ public interface TabSysMenuMapper {
* @param projectList

* @return void


*/
void deleteNotInApp(List<String> projectList);
void deleteNotInApp(@Param("list") List<String> projectList);
}
\ No newline at end of file
......@@ -520,12 +520,12 @@
</update>
<update id="deleteNotInApp">
<if test="projectList != null and projectList.size() > 0">
<if test="list != null and list.size() > 0">
update tab_sys_menu set status = 0
where status = 1
and project != 'gic'
and project NOT IN
<foreach close=")" collection="projectList" index="index" item="item" open="(" separator=",">
<foreach close=")" collection="list" index="index" item="item" open="(" separator=",">
#{item}
</foreach>
</if>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment