|
@@ -136,8 +136,8 @@ public class UserController extends BaseController {
|
|
|
}
|
|
|
|
|
|
@PostMapping(value = "/getTenantByClient", consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE)
|
|
|
- public Long getTenantByClient(Long userId,String clientId) {
|
|
|
- return sysUserService.getTenantByClient(userId,clientId);
|
|
|
+ public HttpResponseResult<Long> getTenantByClient(Long userId,String clientId) {
|
|
|
+ return HttpResponseResult.succeed(sysUserService.getTenantByClient(userId,clientId));
|
|
|
}
|
|
|
|
|
|
@PostMapping(value = "/updateSysUser", consumes = MediaType.APPLICATION_JSON_VALUE)
|