| | |
| | | /** |
| | | * 查询体检打印记录列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:order:list')") |
| | | //@PreAuthorize("@ss.hasPermi('system:order:list')") |
| | | @GetMapping("/list") |
| | | @ApiOperation(value = "查询") |
| | | public TableDataInfo list(TjPrintOrder tjPrintOrder) { |
| | |
| | | /** |
| | | * 导出体检打印记录列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:order:export')") |
| | | // @PreAuthorize("@ss.hasPermi('system:order:export')") |
| | | @Log(title = "体检打印记录", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | @ApiOperation(value = "导出") |
| | |
| | | /** |
| | | * 获取体检打印记录详细信息 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:order:query')") |
| | | //@PreAuthorize("@ss.hasPermi('system:order:query')") |
| | | @GetMapping(value = "/{id}") |
| | | @ApiOperation(value = "详请") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) { |
| | |
| | | /** |
| | | * 新增体检打印记录 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:order:add')") |
| | | //@PreAuthorize("@ss.hasPermi('system:order:add')") |
| | | @Log(title = "体检打印记录", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | @ApiOperation(value = "新增") |
| | |
| | | /** |
| | | * 修改体检打印记录 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:order:edit')") |
| | | //@PreAuthorize("@ss.hasPermi('system:order:edit')") |
| | | @Log(title = "体检打印记录", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | @ApiOperation(value = "修改") |
| | |
| | | /** |
| | | * 删除体检打印记录 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:order:remove')") |
| | | //@PreAuthorize("@ss.hasPermi('system:order:remove')") |
| | | @Log(title = "体检打印记录", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | @ApiOperation(value = "删除") |