| | |
| | | select * from lf.sys_dep where id = #{id} |
| | | </select> |
| | | |
| | | <select id="selectDepsByIds" resultType="com.lf.server.entity.ctrl.IdNameEntity"> |
| | | select id "id",fn_get_fullname(depcode, 1) "name" from lf.sys_dep where id in |
| | | <foreach item="id" collection="ids" index="index" open="(" separator="," close=")"> |
| | | #{id} |
| | | <select id="selectDepsByCodes" resultType="com.lf.server.entity.ctrl.IdNameEntity"> |
| | | select id "id",fn_get_fullname(code, 1) "name" from lf.sys_dep where code in |
| | | <foreach item="code" collection="codes" index="index" open="(" separator="," close=")"> |
| | | #{code} |
| | | </foreach> |
| | | </select> |
| | | |