|
|
@ -35,6 +35,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
<result property="startdate" column="startdate" />
|
|
|
|
<result property="startdate" column="startdate" />
|
|
|
|
<result property="enddate" column="enddate" />
|
|
|
|
<result property="enddate" column="enddate" />
|
|
|
|
<result property="helthy" column="helthy" />
|
|
|
|
<result property="helthy" column="helthy" />
|
|
|
|
|
|
|
|
<result property="examine" column="examine" />
|
|
|
|
|
|
|
|
<result property="examinedate" column="examinedate" />
|
|
|
|
|
|
|
|
<result property="examineuser" column="examineuser" />
|
|
|
|
<association property="dept" column="dept_id" javaType="SysDept" resultMap="deptResult" />
|
|
|
|
<association property="dept" column="dept_id" javaType="SysDept" resultMap="deptResult" />
|
|
|
|
<collection property="roles" javaType="java.util.List" resultMap="RoleResult" />
|
|
|
|
<collection property="roles" javaType="java.util.List" resultMap="RoleResult" />
|
|
|
|
</resultMap>
|
|
|
|
</resultMap>
|
|
|
@ -59,7 +62,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
</resultMap>
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
|
|
<sql id="selectUserVo">
|
|
|
|
<sql id="selectUserVo">
|
|
|
|
select u.user_id, u.dept_id, u.login_name, u.user_name, u.user_type, u.email, u.avatar, u.phonenumber, u.sex, u.password, u.salt, u.status, u.del_flag, u.login_ip, u.login_date, u.pwd_update_date, u.create_time, u.remark,userarea, nation, birthday, politics, shemichengdu, graduate, startdate, enddate, helthy,
|
|
|
|
select u.user_id, u.dept_id, u.login_name, u.user_name, u.user_type, u.email, u.avatar, u.phonenumber, u.sex, u.password, u.salt, u.status, u.del_flag, u.login_ip, u.login_date, u.pwd_update_date, u.create_time, u.remark,userarea, nation, birthday, politics, shemichengdu, graduate, startdate, enddate, helthy,examine,examineuser,examinedate,
|
|
|
|
d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status,
|
|
|
|
d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status,
|
|
|
|
r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status
|
|
|
|
r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status
|
|
|
|
from sys_user u
|
|
|
|
from sys_user u
|
|
|
@ -69,7 +72,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
</sql>
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectUserList" parameterType="SysUser" resultMap="SysUserResult">
|
|
|
|
<select id="selectUserList" parameterType="SysUser" resultMap="SysUserResult">
|
|
|
|
select u.user_id, u.dept_id, u.login_name, u.user_name, u.user_type, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.salt, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, userarea, nation, birthday, politics, shemichengdu, graduate, startdate, enddate, helthy,d.dept_name, d.leader from sys_user u
|
|
|
|
select u.user_id, u.dept_id, u.login_name, u.user_name, u.user_type, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.salt, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, userarea, nation, birthday, politics, shemichengdu, graduate, startdate, enddate, helthy,examine,examineuser,examinedate,d.dept_name, d.leader from sys_user u
|
|
|
|
left join sys_dept d on u.dept_id = d.dept_id
|
|
|
|
left join sys_dept d on u.dept_id = d.dept_id
|
|
|
|
where u.del_flag = '0'
|
|
|
|
where u.del_flag = '0'
|
|
|
|
<if test="userId != null and userId != 0">
|
|
|
|
<if test="userId != null and userId != 0">
|
|
|
@ -98,7 +101,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectAllocatedList" parameterType="SysUser" resultMap="SysUserResult">
|
|
|
|
<select id="selectAllocatedList" parameterType="SysUser" resultMap="SysUserResult">
|
|
|
|
select distinct u.user_id, u.dept_id, u.login_name, u.user_name, u.user_type, u.email, u.avatar, u.phonenumber, u.status, u.create_time,userarea, nation, birthday, politics, shemichengdu, graduate, startdate, enddate, helthy
|
|
|
|
select distinct u.user_id, u.dept_id, u.login_name, u.user_name, u.user_type, u.email, u.avatar, u.phonenumber, u.status, u.create_time,userarea, nation, birthday, politics, shemichengdu, graduate, startdate, enddate, helthy,examine,examineuser,examinedate
|
|
|
|
from sys_user u
|
|
|
|
from sys_user u
|
|
|
|
left join sys_dept d on u.dept_id = d.dept_id
|
|
|
|
left join sys_dept d on u.dept_id = d.dept_id
|
|
|
|
left join sys_user_role ur on u.user_id = ur.user_id
|
|
|
|
left join sys_user_role ur on u.user_id = ur.user_id
|
|
|
@ -115,7 +118,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectUnallocatedList" parameterType="SysUser" resultMap="SysUserResult">
|
|
|
|
<select id="selectUnallocatedList" parameterType="SysUser" resultMap="SysUserResult">
|
|
|
|
select distinct u.user_id, u.dept_id, u.login_name, u.user_name, u.user_type, u.email, u.avatar, u.phonenumber, u.status, u.create_time,userarea, nation, birthday, politics, shemichengdu, graduate, startdate, enddate, helthy
|
|
|
|
select distinct u.user_id, u.dept_id, u.login_name, u.user_name, u.user_type, u.email, u.avatar, u.phonenumber, u.status, u.create_time,userarea, nation, birthday, politics, shemichengdu, graduate, startdate, enddate, helthy,examine,examineuser,examinedate
|
|
|
|
from sys_user u
|
|
|
|
from sys_user u
|
|
|
|
left join sys_dept d on u.dept_id = d.dept_id
|
|
|
|
left join sys_dept d on u.dept_id = d.dept_id
|
|
|
|
left join sys_user_role ur on u.user_id = ur.user_id
|
|
|
|
left join sys_user_role ur on u.user_id = ur.user_id
|
|
|
@ -201,6 +204,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
<if test="shemichengdu != null">shemichengdu = #{shemichengdu},</if>
|
|
|
|
<if test="shemichengdu != null">shemichengdu = #{shemichengdu},</if>
|
|
|
|
<if test="graduate != null">graduate = #{graduate},</if>
|
|
|
|
<if test="graduate != null">graduate = #{graduate},</if>
|
|
|
|
<if test="helthy != null">helthy = #{helthy},</if>
|
|
|
|
<if test="helthy != null">helthy = #{helthy},</if>
|
|
|
|
|
|
|
|
<if test="examine != null">examine = #{examine},</if>
|
|
|
|
|
|
|
|
<if test="examineuser != null">examineuser = #{examineuser},</if>
|
|
|
|
|
|
|
|
<if test="examinedate != null">examinedate = #{examinedate},</if>
|
|
|
|
update_time = sysdate()
|
|
|
|
update_time = sysdate()
|
|
|
|
</set>
|
|
|
|
</set>
|
|
|
|
where user_id = #{userId}
|
|
|
|
where user_id = #{userId}
|
|
|
@ -230,6 +236,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
<if test="shemichengdu != null">shemichengdu,</if>
|
|
|
|
<if test="shemichengdu != null">shemichengdu,</if>
|
|
|
|
<if test="graduate != null">graduate,</if>
|
|
|
|
<if test="graduate != null">graduate,</if>
|
|
|
|
<if test="helthy != null">helthy,</if>
|
|
|
|
<if test="helthy != null">helthy,</if>
|
|
|
|
|
|
|
|
<if test="examine != null">examine,</if>
|
|
|
|
|
|
|
|
<if test="examineuser != null">examineuser,</if>
|
|
|
|
|
|
|
|
<if test="examinedate != null">examinedate,</if>
|
|
|
|
create_time
|
|
|
|
create_time
|
|
|
|
)values(
|
|
|
|
)values(
|
|
|
|
<if test="userId != null and userId != ''">#{userId},</if>
|
|
|
|
<if test="userId != null and userId != ''">#{userId},</if>
|
|
|
@ -256,6 +265,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
<if test="startdate != null">#{startdate},</if>
|
|
|
|
<if test="startdate != null">#{startdate},</if>
|
|
|
|
<if test="enddate != null">#{enddate},</if>
|
|
|
|
<if test="enddate != null">#{enddate},</if>
|
|
|
|
<if test="helthy != null">#{helthy},</if>
|
|
|
|
<if test="helthy != null">#{helthy},</if>
|
|
|
|
|
|
|
|
<if test="examine != null">#{examine},</if>
|
|
|
|
|
|
|
|
<if test="examineuser != null">#{examineuser},</if>
|
|
|
|
|
|
|
|
<if test="examinedate != null">#{examinedate},</if>
|
|
|
|
sysdate()
|
|
|
|
sysdate()
|
|
|
|
)
|
|
|
|
)
|
|
|
|
</insert>
|
|
|
|
</insert>
|
|
|
|