| | |
| | | /** |
| | | * 查询规则+病种列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('hosp:rules:list')") |
| | | //@PreAuthorize("@ss.hasPermi('hosp:rules:list')") |
| | | @GetMapping("/list") |
| | | @ApiOperation(value = "查询规则+病种列表") |
| | | public TableDataInfo list(TjRules tjRules) { |
| | |
| | | /** |
| | | * 导出规则+病种列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('hosp:rules:export')") |
| | | //@PreAuthorize("@ss.hasPermi('hosp:rules:export')") |
| | | @Log(title = "规则+病种", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | @ApiOperation(value = "导出规则+病种列表") |
| | |
| | | /** |
| | | * 获取规则+病种详细信息 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('hosp:rules:query')") |
| | | //@PreAuthorize("@ss.hasPermi('hosp:rules:query')") |
| | | @GetMapping(value = "/{aid}") |
| | | @ApiOperation(value = "获取规则+病种详细信息") |
| | | public AjaxResult getInfo(@PathVariable("aid") String aid) { |
| | |
| | | /** |
| | | * 新增规则+病种 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('hosp:rules:add')") |
| | | // @PreAuthorize("@ss.hasPermi('hosp:rules:add')") |
| | | @Log(title = "规则+病种", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | @ApiOperation(value = "新增规则+病种") |
| | |
| | | /** |
| | | * 修改规则+病种 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('hosp:rules:edit')") |
| | | //@PreAuthorize("@ss.hasPermi('hosp:rules:edit')") |
| | | @Log(title = "规则+病种", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | @ApiOperation(value = "修改规则+病种") |
| | |
| | | /** |
| | | * 删除规则+病种 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('hosp:rules:remove')") |
| | | //@PreAuthorize("@ss.hasPermi('hosp:rules:remove')") |
| | | @Log(title = "规则+病种", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{aids}") |
| | | @ApiOperation(value = "删除规则+病种") |