Commit 3666e31b authored by yuanshuo's avatar yuanshuo

1.修改/system/dept/{deptId}sql语句,多查一个dept_type字段

parent eef0e6df
......@@ -64,7 +64,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectDeptById" parameterType="Long" resultMap="SysDeptResult">
select d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.phone, d.email, d.status,
(select dept_name from sys_dept where dept_id = d.parent_id) parent_name, d.address, d.postcode
(select dept_name from sys_dept where dept_id = d.parent_id) parent_name, d.address, d.postcode,d.dept_type
from sys_dept d
where d.dept_id = #{deptId}
</select>
......
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