commit:同步2.2版本

This commit is contained in:
Jerry
2022-01-23 21:00:54 +08:00
parent ff7e52eedb
commit 35ac62e4d2
1201 changed files with 16301 additions and 161770 deletions

View File

@@ -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

View File

@@ -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集合。