@ -6,9 +6,9 @@
<result column= "user_key" jdbcType= "VARCHAR" property= "userKey" />
<result column= "user_key" jdbcType= "VARCHAR" property= "userKey" />
<result column= "user_name" jdbcType= "VARCHAR" property= "userName" />
<result column= "user_name" jdbcType= "VARCHAR" property= "userName" />
<result column= "nick_name" jdbcType= "VARCHAR" property= "nickName" />
<result column= "nick_name" jdbcType= "VARCHAR" property= "nickName" />
<result column= " Udplat_appId" jdbcType= "VARCHAR" property= "U dplat_appId" />
<result column= " udplat_appId" jdbcType= "VARCHAR" property= "u dplat_appId" />
<result column= " Udplat_secretKey" jdbcType= "VARCHAR" property= "U dplat_secretKey" />
<result column= " udplat_secretKey" jdbcType= "VARCHAR" property= "u dplat_secretKey" />
<result column= " Udplat_userName" jdbcType= "VARCHAR" property= "U dplat_userName" />
<result column= " udplat_userName" jdbcType= "VARCHAR" property= "u dplat_userName" />
<result column= "status" jdbcType= "CHAR" property= "status" />
<result column= "status" jdbcType= "CHAR" property= "status" />
<result column= "password" jdbcType= "VARCHAR" property= "password" />
<result column= "password" jdbcType= "VARCHAR" property= "password" />
<result column= "create_time" jdbcType= "TIMESTAMP" property= "createTime" />
<result column= "create_time" jdbcType= "TIMESTAMP" property= "createTime" />
@ -19,22 +19,21 @@
where id = #{id,jdbcType=INTEGER}
where id = #{id,jdbcType=INTEGER}
</delete>
</delete>
<insert id= "insert" parameterType= "com.glxp.udidl.admin.entity.sys.SysUser" >
<insert id= "insert" parameterType= "com.glxp.udidl.admin.entity.sys.SysUser" >
insert into sys_user (id, user_key, user_name, Udplat_appId,Udplat_secretKey,U dplat_userName
insert into sys_user (id, user_key, user_name, udplat_appId,udplat_secretKey,u dplat_userName
nick_name, password, sor t, create_time,
nick_name, password, status , create_time,
role_id)
role_id)
values (#{id,jdbcType=INTEGER}, #{userKey,jdbcType=VARCHAR}, #{userName,jdbcType=VARCHAR},
values (#{id,jdbcType=INTEGER}, #{userKey,jdbcType=VARCHAR}, #{userName,jdbcType=VARCHAR},
#{Udplat_appId,jdbcType=VARCHAR}, #{Udplat_secretKey,jdbcType=VARCHAR}, #{U dplat_userName,jdbcType=VARCHAR},
#{udplat_appId,jdbcType=VARCHAR}, #{udplat_secretKey,jdbcType=VARCHAR}, #{u dplat_userName,jdbcType=VARCHAR},
#{nickName,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR},#{sort,jdbcType=INTEGE R}, #{createTime,jdbcType=TIMESTAMP},
#{nickName,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR},#{status,jdbcType=CHA R}, #{createTime,jdbcType=TIMESTAMP},
#{roleId,jdbcType=INTEGER})
#{roleId,jdbcType=INTEGER})
</insert>
</insert>
<update id= "updateByPrimaryKey" parameterType= "com.glxp.udidl.admin.entity.sys.SysUser" >
<update id= "updateByPrimaryKey" parameterType= "com.glxp.udidl.admin.entity.sys.SysUser" >
update sys_user
update sys_user
set user_key = #{userKey,jdbcType=VARCHAR},
set user_name = #{userName,jdbcType=VARCHAR},
user_name = #{userName,jdbcType=VARCHAR},
nick_name = #{nickName,jdbcType=VARCHAR},
nick_name = #{nickName,jdbcType=VARCHAR},
Udplat_appId = #{U dplat_appId,jdbcType=VARCHAR},
udplat_appId = #{u dplat_appId,jdbcType=VARCHAR},
Udplat_secretKey = #{U dplat_secretKey,jdbcType=VARCHAR},
udplat_secretKey = #{u dplat_secretKey,jdbcType=VARCHAR},
Udplat_userName = #{U dplat_userName,jdbcType=VARCHAR},
udplat_userName = #{u dplat_userName,jdbcType=VARCHAR},
status = #{status,jdbcType=CHAR},
status = #{status,jdbcType=CHAR},
password = #{password,jdbcType=VARCHAR},
password = #{password,jdbcType=VARCHAR},
role_id = #{roleId,jdbcType=INTEGER}
role_id = #{roleId,jdbcType=INTEGER}
@ -53,6 +52,17 @@
SELECT count(u.id) FROM `sys_user` as u LEFT JOIN sys_role r on u.role_id=r.id
SELECT count(u.id) FROM `sys_user` as u LEFT JOIN sys_role r on u.role_id=r.id
LEFT JOIN sys_role_menu rm on r.id=rm.role_id
LEFT JOIN sys_role_menu rm on r.id=rm.role_id
LEFT JOIN sys_menu m on rm.menu_id=m.id
LEFT JOIN sys_menu m on rm.menu_id=m.id
where u.user_key= #{userKey,jdbcType=VARCHAR} and m.perms= #{perms,jdbcType=VARCHAR}
where u.user_key= #{userKey,jdbcType=VARCHAR} and m.perms= #{perms,jdbcType=VARCHAR} and m.status='0'
</select>
<select id= "list" parameterType= "com.glxp.udidl.admin.dto.sys.SysUserParam" resultMap= "BaseResultMap" >
select * from sys_user
<where >
<if test= "status != null and status != '' " >
and status = #{status}
</if>
<if test= "name != null and name != '' " >
and user_name like concat('%',#{name},'%')
</if>
</where>
</select>
</select>
</mapper>
</mapper>