代码更新

dev
1178634255 2 years ago
parent 91cf593506
commit c241831d6d

@ -133,7 +133,7 @@ public class AuthUserController extends BaseController {
return ResultVOUtils.success(authAdmin); return ResultVOUtils.success(authAdmin);
} }
//修改用户信息 //修改用户信息
@AuthRuleAnnotation("") @AuthRuleAnnotation("")
@PostMapping("/admin/auth/admin/updateUser") @PostMapping("/admin/auth/admin/updateUser")
public BaseResponse updateUser(@RequestBody UpdateUserRequset updateUserRequset) { public BaseResponse updateUser(@RequestBody UpdateUserRequset updateUserRequset) {

@ -26,9 +26,6 @@
<if test="deptName != null and '' != deptName"> <if test="deptName != null and '' != deptName">
AND auth_dept.name LIKE CONCAT('%', #{deptName}, '%') AND auth_dept.name LIKE CONCAT('%', #{deptName}, '%')
</if> </if>
<if test="deptName != null and '' != deptName">
AND auth_dept.name != #{deptName}
</if>
<if test="lastUpdateTime != null and lastUpdateTime != ''"> <if test="lastUpdateTime != null and lastUpdateTime != ''">
<![CDATA[ <![CDATA[
and DATE_FORMAT(lastModifyTime and DATE_FORMAT(lastModifyTime
@ -40,8 +37,8 @@
AND auth_user.locDeptCode = #{deptCode} AND auth_user.locDeptCode = #{deptCode}
</if> </if>
</where> </where>
ORDER BY id ORDER BY id DESC
DESC
</select> </select>
<select id="findByUserName" parameterType="hashmap" resultType="com.glxp.api.entity.auth.AuthAdmin"> <select id="findByUserName" parameterType="hashmap" resultType="com.glxp.api.entity.auth.AuthAdmin">

Loading…
Cancel
Save