| | |
| | | * 查询模板管理列表 |
| | | */ |
| | | @ApiOperation("查询模板管理列表") |
| | | @PreAuthorize("@ss.hasPermi('oa:template:list')") |
| | | //@PreAuthorize("@ss.hasPermi('oa:template:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo<BsTemplateVo> list(@Validated(QueryGroup.class) BsTemplateBo bo) { |
| | | return iBsTemplateService.queryPageList(bo); |
| | |
| | | * 获取模板管理详细信息 |
| | | */ |
| | | @ApiOperation("获取模板管理详细信息") |
| | | @PreAuthorize("@ss.hasPermi('oa:template:query')") |
| | | //@PreAuthorize("@ss.hasPermi('oa:template:query')") |
| | | @GetMapping("/{id}") |
| | | public AjaxResult<BsTemplateVo> getInfo(@ApiParam("主键") |
| | | @NotNull(message = "主键不能为空") |