| | |
| | | * 查询手册管理列表 |
| | | */ |
| | | @ApiOperation("查询手册管理列表") |
| | | @PreAuthorize("@ss.hasPermi('oa:manual:list')") |
| | | //@PreAuthorize("@ss.hasPermi('oa:manual:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo<BsManualVo> list(@Validated(QueryGroup.class) BsManualBo bo) { |
| | | return iBsManualService.queryPageList(bo); |
| | |
| | | * 导出手册管理列表 |
| | | */ |
| | | @ApiOperation("导出手册管理列表") |
| | | @PreAuthorize("@ss.hasPermi('oa:manual:export')") |
| | | //@PreAuthorize("@ss.hasPermi('oa:manual:export')") |
| | | @Log(title = "手册管理", businessType = BusinessType.EXPORT) |
| | | @GetMapping("/export") |
| | | public void export(@Validated BsManualBo bo, HttpServletResponse response) { |
| | |
| | | * 获取手册管理详细信息 |
| | | */ |
| | | @ApiOperation("获取手册管理详细信息") |
| | | @PreAuthorize("@ss.hasPermi('oa:manual:query')") |
| | | //@PreAuthorize("@ss.hasPermi('oa:manual:query')") |
| | | @GetMapping("/{id}") |
| | | public AjaxResult<BsManualVo> getInfo(@ApiParam("主键") |
| | | @NotNull(message = "主键不能为空") |