feat(video-courseware): 添加无权限分页接口
parent
098b509643
commit
1fff660e43
|
|
@ -54,6 +54,11 @@ public class VideoCoursewareController {
|
||||||
public PageResponse<VideoCoursewareCO> page(@RequestBody VideoCoursewarePageQry qry) {
|
public PageResponse<VideoCoursewareCO> page(@RequestBody VideoCoursewarePageQry qry) {
|
||||||
return videoCoursewareService.listPage(qry);
|
return videoCoursewareService.listPage(qry);
|
||||||
}
|
}
|
||||||
|
@ApiOperation("分页没有权限")
|
||||||
|
@PostMapping("/listNoPermission")
|
||||||
|
public PageResponse<VideoCoursewareCO> listNoPermission(@RequestBody VideoCoursewarePageQry qry) {
|
||||||
|
return videoCoursewareService.listPage(qry);
|
||||||
|
}
|
||||||
|
|
||||||
@ApiOperation("所有数据")
|
@ApiOperation("所有数据")
|
||||||
@PostMapping("/listAll")
|
@PostMapping("/listAll")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue