| | |
| | | * 查询患者检查检验记录列表 |
| | | */ |
| | | @ApiOperation("查询患者检查检验记录列表") |
| | | @PreAuthorize("@ss.hasPermi('system:inspection:list')") |
| | | //@PreAuthorize("@ss.hasPermi('system:inspection:list')") |
| | | @PostMapping("/list") |
| | | public TableDataInfo list(@RequestBody PatMedInspection patMedInspection) { |
| | | startPage(); |
| | |
| | | * 导出患者检查检验记录列表 |
| | | */ |
| | | @ApiOperation("导出患者检查检验记录列表") |
| | | @PreAuthorize("@ss.hasPermi('system:inspection:export')") |
| | | //@PreAuthorize("@ss.hasPermi('system:inspection:export')") |
| | | @Log(title = "患者检查检验记录", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, PatMedInspection patMedInspection) { |
| | |
| | | * 获取患者检查检验记录详细信息 |
| | | */ |
| | | @ApiOperation("获取患者检查检验记录详细信息") |
| | | @PreAuthorize("@ss.hasPermi('system:inspection:query')") |
| | | //@PreAuthorize("@ss.hasPermi('system:inspection:query')") |
| | | @GetMapping(value = "/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) { |
| | | return success(patMedInspectionService.selectPatMedInspectionById(id)); |
| | |
| | | /** |
| | | * 新增患者检查检验记录 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:inspection:add')") |
| | | //@PreAuthorize("@ss.hasPermi('system:inspection:add')") |
| | | @Log(title = "新增患者检查检验记录", businessType = BusinessType.INSERT) |
| | | @ApiOperation("新增患者检查检验记录") |
| | | @PostMapping("/add") |
| | |
| | | /** |
| | | * 修改患者检查检验记录 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:inspection:edit')") |
| | | //@PreAuthorize("@ss.hasPermi('system:inspection:edit')") |
| | | @Log(title = "修改患者检查检验记录", businessType = BusinessType.UPDATE) |
| | | @ApiOperation("修改患者检查检验记录") |
| | | @PostMapping("/edit") |
| | |
| | | /** |
| | | * 删除患者检查检验记录 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:inspection:remove')") |
| | | //@PreAuthorize("@ss.hasPermi('system:inspection:remove')") |
| | | @Log(title = "患者检查检验记录", businessType = BusinessType.DELETE) |
| | | @ApiOperation("患者检查检验记录") |
| | | @GetMapping("/remove/{ids}") |