|
@@ -30,7 +30,6 @@ import org.springframework.web.bind.annotation.RestController;
|
|
|
@Validated
|
|
|
@RestController
|
|
|
@ResponseWrapping
|
|
|
-@PreAuthorize("isScope('EMPLOYEE')")
|
|
|
public class RankAwardConfigController {
|
|
|
|
|
|
@DubboReference
|
|
@@ -77,7 +76,7 @@ public class RankAwardConfigController {
|
|
|
* @date 2024/2/23 17:25
|
|
|
*/
|
|
|
@GetMapping("/rank-award/list")
|
|
|
- public Pagination<RankAwardConfigDTO> list(QueryRankAwardConfigParam param, Paging page) {
|
|
|
- return this.rankAwardConfigService.queryPageList(param, page.getNumber(), page.getSize());
|
|
|
+ public Pagination<RankAwardConfigDTO> list(QueryRankAwardConfigParam param, Long pageCode, Long pageSize) {
|
|
|
+ return this.rankAwardConfigService.queryPageList(param, pageCode, pageSize);
|
|
|
}
|
|
|
}
|