| | |
| | | /** |
| | | * 查询template列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('hosp:template:list')") |
| | | //@PreAuthorize("@ss.hasPermi('hosp:template:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(TjReportTemplate tjReportTemplate) { |
| | | startPage(); |
| | |
| | | /** |
| | | * 获取template详细信息 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('hosp:template:query')") |
| | | //@PreAuthorize("@ss.hasPermi('hosp:template:query')") |
| | | @GetMapping(value = "/{reportTemId}") |
| | | public AjaxResult getInfo(@PathVariable("reportTemId") Long reportTemId) { |
| | | return success(tjReportTemplateService.selectTjReportTemplateByReportTemId(reportTemId)); |