| | |
| | | * 结果存放列表 |
| | | */ |
| | | @GetMapping("/page") |
| | | @PreAuthorize("@ss.hasPermission('model:pre-result:query')") |
| | | public CommonResult<PageResult<MmResultTableRespVO>> page(@Validated MmResultTablePageReqVO reqVO) { |
| | | PageResult<MmResultTableEntity> page = mmResultTableService.page(reqVO); |
| | | |
| | |
| | | |
| | | |
| | | @GetMapping("/list") |
| | | @PreAuthorize("@ss.hasPermission('model:pre-result:query')") |
| | | public CommonResult<List<MmResultTableEntity>> list(@Valid @RequestParam Map<String, Object> params) { |
| | | List<MmResultTableEntity> list = mmResultTableService.list(params); |
| | | return success(list); |