|
@@ -103,7 +103,7 @@
|
|
|
</select>
|
|
|
|
|
|
<select id="selectDeptById" resultType="java.util.HashMap">
|
|
|
- SELECT d.dept_id AS deptid,
|
|
|
+ SELECT d.dept_id AS deptId,
|
|
|
d.name,
|
|
|
d.level,
|
|
|
CASE WHEN a.zj_number IS NULL THEN e.entcode ELSE a.zj_number END entcode
|
|
@@ -199,7 +199,7 @@
|
|
|
</select>
|
|
|
|
|
|
<select id="getChildDept" resultType="map">
|
|
|
- SELECT DISTINCT dept_id deptid,
|
|
|
+ SELECT DISTINCT dept_id deptId,
|
|
|
`name`
|
|
|
FROM sys_dept
|
|
|
WHERE dept_id IN
|
|
@@ -220,7 +220,7 @@
|
|
|
</select>
|
|
|
|
|
|
<select id="getDeptConvertToName" resultType="map">
|
|
|
- SELECT dept_id deptid, `name`
|
|
|
+ SELECT dept_id deptId, `name`
|
|
|
FROM sys_dept
|
|
|
</select>
|
|
|
|