| | |
| | | /** |
| | | * 查询体检记录明细列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('hosp:detail:list')") |
| | | // @PreAuthorize("@ss.hasPermi('hosp:detail:list')") |
| | | @GetMapping("/list") |
| | | @ApiOperation(value = "查询体检记录明细列表") |
| | | public TableDataInfo list(TjOrderDetail tjOrderDetail) { |
| | |
| | | /** |
| | | * 导出体检记录明细列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('hosp:detail:export')") |
| | | //@PreAuthorize("@ss.hasPermi('hosp:detail:export')") |
| | | @Log(title = "体检项目明细", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | @ApiOperation(value = "导出体检记录明细列表") |
| | |
| | | /** |
| | | * 获取体检记录明细详细信息 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('hosp:detail:query')") |
| | | //@PreAuthorize("@ss.hasPermi('hosp:detail:query')") |
| | | @GetMapping(value = "/{orderDetailId}") |
| | | @ApiOperation(value = "获取体检记录明细详细信息") |
| | | public AjaxResult getInfo(@PathVariable("orderDetailId") String orderDetailId) { |
| | |
| | | /** |
| | | * 新增体检记录明细 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('hosp:detail:add')") |
| | | //@PreAuthorize("@ss.hasPermi('hosp:detail:add')") |
| | | @Log(title = "体检项目明细", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | @ApiOperation(value = "新增体检记录明细") |
| | |
| | | /** |
| | | * 修改体检记录明细 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('hosp:detail:edit')") |
| | | //@PreAuthorize("@ss.hasPermi('hosp:detail:edit')") |
| | | @Log(title = "体检项目明细", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | @ApiOperation(value = "修改体检记录明细") |
| | |
| | | /** |
| | | * 删除体检记录明细 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('hosp:detail:remove')") |
| | | //@PreAuthorize("@ss.hasPermi('hosp:detail:remove')") |
| | | @Log(title = "体检项目明细", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{orderDetailIds}") |
| | | @ApiOperation(value = "删除体检记录明细") |