fix(系统设置): 删除组织成员排序条件
This commit is contained in:
parent
1403e4f72e
commit
dfecb1e699
|
@ -67,8 +67,7 @@ public class SystemOrganizationController {
|
|||
@Operation(summary = "获取组织成员")
|
||||
@RequiresPermissions(value = {PermissionConstants.SYSTEM_ORGANIZATION_PROJECT_READ, PermissionConstants.SYSTEM_USER_READ})
|
||||
public Pager<List<UserExtend>> listMember(@Validated @RequestBody OrganizationRequest request) {
|
||||
Page<Object> page = PageHelper.startPage(request.getCurrent(), request.getPageSize(),
|
||||
StringUtils.isNotBlank(request.getSortString()) ? request.getSortString() : "create_time desc");
|
||||
Page<Object> page = PageHelper.startPage(request.getCurrent(), request.getPageSize(), true);
|
||||
return PageUtils.setPageInfo(page, organizationService.getMemberListBySystem(request));
|
||||
}
|
||||
|
||||
|
|
|
@ -36,10 +36,10 @@
|
|||
join `user` u on urr.user_id = u.id
|
||||
<where>
|
||||
u.deleted = 0
|
||||
<if test="request.organizationId != null">
|
||||
<if test="request.organizationId != null and request.organizationId != ''">
|
||||
and urr.source_id = #{request.organizationId}
|
||||
</if>
|
||||
<if test="request.keyword != null">
|
||||
<if test="request.keyword != null and request.keyword != ''">
|
||||
and u.name like concat('%', #{request.keyword},'%')
|
||||
</if>
|
||||
</where>
|
||||
|
@ -56,10 +56,10 @@
|
|||
from user_role_relation urr
|
||||
join `user` u on urr.user_id = u.id
|
||||
<where>
|
||||
<if test="request.organizationId != null">
|
||||
<if test="request.organizationId != null and request.organizationId != ''">
|
||||
urr.source_id = #{request.organizationId}
|
||||
</if>
|
||||
<if test="request.keyword != null">
|
||||
<if test="request.keyword != null and request.keyword != ''">
|
||||
and (u.name like CONCAT('%', #{request.keyword},'%')
|
||||
or u.email like CONCAT('%', #{request.keyword},'%')
|
||||
or u.phone like CONCAT('%', #{request.keyword},'%'))
|
||||
|
|
Loading…
Reference in New Issue