|
@@ -23,7 +23,6 @@ import org.springframework.web.bind.annotation.RestController;
|
|
@Validated
|
|
@Validated
|
|
@RestController
|
|
@RestController
|
|
@ResponseWrapping
|
|
@ResponseWrapping
|
|
-@PreAuthorize("isScope('EMPLOYEE')")
|
|
|
|
public class RankAwardRecordController {
|
|
public class RankAwardRecordController {
|
|
|
|
|
|
@DubboReference
|
|
@DubboReference
|
|
@@ -33,13 +32,12 @@ public class RankAwardRecordController {
|
|
* 查询列表
|
|
* 查询列表
|
|
*
|
|
*
|
|
* @param param
|
|
* @param param
|
|
- * @param page
|
|
|
|
* @author igl
|
|
* @author igl
|
|
* @date 2024/2/23 17:25
|
|
* @date 2024/2/23 17:25
|
|
*/
|
|
*/
|
|
@GetMapping("/rank-award-record/list")
|
|
@GetMapping("/rank-award-record/list")
|
|
- public Pagination<RankAwardRecordDTO> list(QueryRankAwardRecordParam param, Paging page) {
|
|
|
|
- return this.rankAwardRecordService.queryPageList(param, page.getNumber(), page.getSize());
|
|
|
|
|
|
+ public Pagination<RankAwardRecordDTO> list(QueryRankAwardRecordParam param) {
|
|
|
|
+ return this.rankAwardRecordService.queryPageList(param);
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|