mirror of
https://gitee.com/orangeform/orange-admin.git
synced 2026-01-18 02:56:30 +08:00
commit:同步2.2版本
This commit is contained in:
@@ -164,6 +164,16 @@ public interface SysDeptClient extends BaseClient<SysDeptDto, SysDeptVo, Long> {
|
||||
@PostMapping("/sysDept/aggregateBy")
|
||||
ResponseResult<List<Map<String, Object>>> aggregateBy(@RequestBody MyAggregationParam aggregationParam);
|
||||
|
||||
/**
|
||||
* 根据过滤字段和过滤集合,返回不存在的数据。
|
||||
*
|
||||
* @param queryParam 查询参数。
|
||||
* @return filterSet中,在从表中不存在的数据集合。
|
||||
*/
|
||||
@Override
|
||||
@PostMapping("/sysDept/notExist")
|
||||
ResponseResult<List<?>> notExist(@RequestBody MyQueryParam queryParam);
|
||||
|
||||
@Component("UpmsSysDeptClientFallbackFactory")
|
||||
@Slf4j
|
||||
class SysDeptClientFallbackFactory
|
||||
|
||||
@@ -166,6 +166,16 @@ public interface SysUserClient extends BaseClient<SysUserDto, SysUserVo, Long> {
|
||||
@PostMapping("/sysUser/aggregateBy")
|
||||
ResponseResult<List<Map<String, Object>>> aggregateBy(@RequestBody MyAggregationParam aggregationParam);
|
||||
|
||||
/**
|
||||
* 根据过滤字段和过滤集合,返回不存在的数据。
|
||||
*
|
||||
* @param queryParam 查询参数。
|
||||
* @return filterSet中,在从表中不存在的数据集合。
|
||||
*/
|
||||
@Override
|
||||
@PostMapping("/sysUser/notExist")
|
||||
ResponseResult<List<?>> notExist(@RequestBody MyQueryParam queryParam);
|
||||
|
||||
/**
|
||||
* 获取指定角色Id集合的用户数据集合。
|
||||
* @param roleIds 角色Id集合。
|
||||
|
||||
Reference in New Issue
Block a user