| | |
| | | ORDER BY sort |
| | | </select> |
| | | |
| | | <select id="treeByParentId" resultMap="treeNodeResultMap"> |
| | | select id, parent_id, dept_name as title, id as "value", id as "key" from blade_dept where is_deleted = 0 |
| | | <if test="parentIds!=null and parentIds!=''"> |
| | | and |
| | | |
| | | <foreach item="id" collection="parentIds" open="(" separator="or" close=")"> |
| | | id = #{id} or parent_id = #{id} or parent_id in ( |
| | | select b.id from blade_dept b where b.is_deleted = 0 and b.PARENT_ID = #{id} |
| | | ) |
| | | |
| | | </foreach> |
| | | |
| | | </if> |
| | | ORDER BY sort |
| | | </select> |
| | | |
| | | <select id="lazyTree" resultMap="treeNodeResultMap" > |
| | | SELECT |
| | | dept.id, |
| | |
| | | and bu.dept_id like concat(concat('%',#{treeNode.id}),'%') |
| | | </if> |
| | | </select> |
| | | <select id="getResDept" resultType="java.lang.String"> |
| | | |
| | | SELECT WM_CONCAT(res_guid) |
| | | FROM blade_dept where res_guid is not null and res_guid != '' |
| | | and id in |
| | | <foreach collection="deptIds.split(',')" item="item" index="index" open="(" separator="," close=")"> |
| | | #{item} |
| | | </foreach> |
| | | |
| | | </select> |
| | | |
| | | </mapper> |