|
|
|
@ -35,10 +35,10 @@ public class WithdrawAuditUserQueryController { |
|
|
|
@RequestHeader(name = RequestHeaderFields.FIELD_ORGANIZATION_ID, required = false) Long orgId, |
|
|
|
PageUtil pageUtil, |
|
|
|
UserPageWithdrawAuditQueryParams queryParams) { |
|
|
|
if (Objects.isNull(queryParams.getQueryOrgId())) { |
|
|
|
queryParams.setQueryOrgId(orgId); |
|
|
|
} else { |
|
|
|
if (Objects.isNull(queryParams.getQueryUserId())) { |
|
|
|
if (Objects.isNull(queryParams.getQueryOrgId()) && Objects.isNull(queryParams.getQueryUserId())) { |
|
|
|
if (Objects.nonNull(orgId)){ |
|
|
|
queryParams.setQueryOrgId(orgId); |
|
|
|
}else{ |
|
|
|
queryParams.setQueryUserId(userId); |
|
|
|
} |
|
|
|
} |
|
|
|
|