mirror of
https://gitee.com/orangeform/orange-admin.git
synced 2026-01-17 18:46:36 +08:00
commit:同步2.2版本
This commit is contained in:
@@ -164,6 +164,16 @@ public interface CourseTransStatsClient extends BaseClient<CourseTransStatsDto,
|
||||
@PostMapping("/courseTransStats/aggregateBy")
|
||||
ResponseResult<List<Map<String, Object>>> aggregateBy(@RequestBody MyAggregationParam aggregationParam);
|
||||
|
||||
/**
|
||||
* 根据过滤字段和过滤集合,返回不存在的数据。
|
||||
*
|
||||
* @param queryParam 查询参数。
|
||||
* @return filterSet中,在从表中不存在的数据集合。
|
||||
*/
|
||||
@Override
|
||||
@PostMapping("/courseTransStats/notExist")
|
||||
ResponseResult<List<?>> notExist(@RequestBody MyQueryParam queryParam);
|
||||
|
||||
@Component("StatsCourseTransStatsClientFallbackFactory")
|
||||
@Slf4j
|
||||
class CourseTransStatsClientFallbackFactory
|
||||
|
||||
@@ -164,6 +164,16 @@ public interface StudentActionStatsClient extends BaseClient<StudentActionStatsD
|
||||
@PostMapping("/studentActionStats/aggregateBy")
|
||||
ResponseResult<List<Map<String, Object>>> aggregateBy(@RequestBody MyAggregationParam aggregationParam);
|
||||
|
||||
/**
|
||||
* 根据过滤字段和过滤集合,返回不存在的数据。
|
||||
*
|
||||
* @param queryParam 查询参数。
|
||||
* @return filterSet中,在从表中不存在的数据集合。
|
||||
*/
|
||||
@Override
|
||||
@PostMapping("/studentActionStats/notExist")
|
||||
ResponseResult<List<?>> notExist(@RequestBody MyQueryParam queryParam);
|
||||
|
||||
@Component("StatsStudentActionStatsClientFallbackFactory")
|
||||
@Slf4j
|
||||
class StudentActionStatsClientFallbackFactory
|
||||
|
||||
@@ -184,6 +184,16 @@ public interface StudentActionTransClient extends BaseClient<StudentActionTransD
|
||||
@PostMapping("/studentActionTrans/aggregateBy")
|
||||
ResponseResult<List<Map<String, Object>>> aggregateBy(@RequestBody MyAggregationParam aggregationParam);
|
||||
|
||||
/**
|
||||
* 根据过滤字段和过滤集合,返回不存在的数据。
|
||||
*
|
||||
* @param queryParam 查询参数。
|
||||
* @return filterSet中,在从表中不存在的数据集合。
|
||||
*/
|
||||
@Override
|
||||
@PostMapping("/studentActionTrans/notExist")
|
||||
ResponseResult<List<?>> notExist(@RequestBody MyQueryParam queryParam);
|
||||
|
||||
@Component("StatsStudentActionTransClientFallbackFactory")
|
||||
@Slf4j
|
||||
class StudentActionTransClientFallbackFactory
|
||||
|
||||
Reference in New Issue
Block a user