系统管理
This commit is contained in:
@ -44,6 +44,10 @@ public interface SystemClient {
|
||||
@ApiParam(value = "查询对象数据", required = false) @SpringQueryMap SysUser param
|
||||
);
|
||||
|
||||
@ApiOperation("根据用户ID集合查询所有用户信息")
|
||||
@PostMapping("/v1/sysuser/getUsersByIds")
|
||||
BaseResponse<List<SysUser>> getUsersByIds(@RequestBody List<String> ids);
|
||||
|
||||
@ApiOperation("根据用户ID查询本单位下所有用户分页数据")
|
||||
@PostMapping("/v1/sysuser/getPageByUserCompany")
|
||||
BaseResponse<Page<SysUser>> getPageByUserCompany(@ApiParam(value = "分页及查询条件", required = true) @RequestBody SysUserVO sysUserVO);
|
||||
|
@ -30,6 +30,11 @@ public class SystemClientFallback implements SystemClient {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public BaseResponse<List<SysUser>> getUsersByIds(List<String> ids) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public BaseResponse<Page<SysUser>> getPageByUserCompany(SysUserVO sysUserVO) {
|
||||
return null;
|
||||
|
Reference in New Issue
Block a user