Merge branch 'master' of gitee.com:lab1024/smart-admin into master

This commit is contained in:
yandy_java 2020-11-29 22:32:49 +08:00 committed by Gitee
commit b03a911ba9

View File

@ -146,7 +146,7 @@
t_employee e t_employee e
WHERE WHERE
e.department_id IN e.department_id IN
<foreach collection="departmentIds" open="(" close=")" item="item" separator=","> <foreach collection="departmentIds" item="item" open="(" close=")" separator=",">
#{item} #{item}
</foreach> </foreach>
order by e.create_time desc order by e.create_time desc
@ -158,7 +158,7 @@
FROM FROM
t_employee e t_employee e
where e.id IN where e.id IN
<foreach collection="ids" open="(" close=")" item="item" separator=","> <foreach collection="ids" item="item" open="(" close=")" separator=",">
#{item} #{item}
</foreach> </foreach>
order by e.create_time desc order by e.create_time desc