|
@@ -29,20 +29,12 @@ public class ProfitRatioController {
|
|
|
/**
|
|
|
* 查询列表
|
|
|
* @param param 查询参数
|
|
|
- * @param pageCode
|
|
|
- * @param pageSize
|
|
|
* @author igl
|
|
|
* @date 2024/2/23 17:25
|
|
|
*/
|
|
|
@GetMapping("/platform/profit-ratio/page")
|
|
|
- public Pagination<PlatformProfitRatioDTO> list(@Validated QueryPlatformProfitRatioParam param, Long pageCode, Long pageSize) {
|
|
|
- if (pageCode == null) {
|
|
|
- pageCode = 1L;
|
|
|
- }
|
|
|
- if (pageSize == null) {
|
|
|
- pageSize = 20L;
|
|
|
- }
|
|
|
- return this.platformProfitRatioService.queryPageList(param, pageCode, pageSize);
|
|
|
+ public Pagination<PlatformProfitRatioDTO> list(@Validated QueryPlatformProfitRatioParam param) {
|
|
|
+ return this.platformProfitRatioService.queryPageList(param);
|
|
|
}
|
|
|
|
|
|
/**
|