更新运维部门人员数据增加返回类型

This commit is contained in:
panshuling321 2022-09-22 13:51:53 +08:00
parent df0c725097
commit 9019ad564c
2 changed files with 3 additions and 2 deletions

View File

@ -54,7 +54,8 @@
<select id="selectMapListByParams" resultType="map"> <select id="selectMapListByParams" resultType="map">
select select
concat('d_',work_dept_id) as 'id', concat('d_',work_dept_id) as 'id',
dept_name as 'name' dept_name as 'name',
type
from xhpc_work_dept from xhpc_work_dept
where del_flag = 0 and status = 1 where del_flag = 0 and status = 1
<if test="params.tenantId !=null and params.tenantId!=''"> <if test="params.tenantId !=null and params.tenantId!=''">

View File

@ -144,7 +144,7 @@
<select id="selectMapList" resultType="java.util.Map"> <select id="selectMapList" resultType="java.util.Map">
select select
u.work_user_id as 'id', u.user_name as 'name' u.work_user_id as 'id', u.user_name as 'name',u.type
from xhpc_work_user u from xhpc_work_user u
where u.del_flag=0 and u.status=1 where u.del_flag=0 and u.status=1
<if test="params.deptId!=null"> <if test="params.deptId!=null">