| | |
| | | /** |
| | | * 查询体检项目建议规则新表列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('hosp:advicerules:list')") |
| | | // @PreAuthorize("@ss.hasPermi('hosp:advicerules:list')") |
| | | @GetMapping("/list") |
| | | @ApiOperation(value = "查询体检项目建议规则新表列表") |
| | | public TableDataInfo list(TjProAdvicerules tjProAdvicerules) { |
| | |
| | | /** |
| | | * 导出体检项目建议规则新表列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('hosp:advicerules:export')") |
| | | // @PreAuthorize("@ss.hasPermi('hosp:advicerules:export')") |
| | | @Log(title = "体检项目建议规则新表", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | @ApiOperation(value = "导出体检项目建议规则新表列表") |
| | |
| | | /** |
| | | * 获取体检项目建议规则新表详细信息 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('hosp:advicerules:query')") |
| | | // @PreAuthorize("@ss.hasPermi('hosp:advicerules:query')") |
| | | @GetMapping(value = "/{id}") |
| | | @ApiOperation(value = "获取体检项目建议规则新表详细信息") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) { |
| | |
| | | /** |
| | | * 新增体检项目建议规则新表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('hosp:advicerules:add')") |
| | | // @PreAuthorize("@ss.hasPermi('hosp:advicerules:add')") |
| | | @Log(title = "体检项目建议规则新表", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | @ApiOperation(value = "新增体检项目建议规则新表") |
| | |
| | | /** |
| | | * 修改体检项目建议规则新表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('hosp:advicerules:edit')") |
| | | // @PreAuthorize("@ss.hasPermi('hosp:advicerules:edit')") |
| | | @Log(title = "体检项目建议规则新表", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | @ApiOperation(value = "修改体检项目建议规则新表") |