| | |
| | | /** |
| | | * 查询弃检列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('hosp:inspection:list')") |
| | | //@PreAuthorize("@ss.hasPermi('hosp:inspection:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(TjDiscardInspection tjDiscardInspection) { |
| | | startPage(); |
| | |
| | | /** |
| | | * 获取弃检详细信息 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('hosp:inspection:query')") |
| | | // @PreAuthorize("@ss.hasPermi('hosp:inspection:query')") |
| | | @GetMapping(value = "/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) { |
| | | return success(tjDiscardInspectionService.selectTjDiscardInspectionById(id)); |