| | |
| | | * 查询医学评估列表 |
| | | */ |
| | | @ApiOperation("获取医疗评估列表") |
| | | //@PreAuthorize("@ss.hasPermi('project:medicalevaluation:list')") |
| | | //// @PreAuthorize("@ss.hasPermi('project:medicalevaluation:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(ServiceMedicalevaluation serviceMedicalevaluation) { |
| | | startPage(); |
| | |
| | | * 导出医学评估列表 |
| | | */ |
| | | @ApiOperation("导出医疗评估列表") |
| | | //@PreAuthorize("@ss.hasPermi('project:medicalevaluation:export')") |
| | | //// @PreAuthorize("@ss.hasPermi('project:medicalevaluation:export')") |
| | | @Log(title = "医学评估", businessType = BusinessType.EXPORT) |
| | | @GetMapping("/export") |
| | | public AjaxResult export(ServiceMedicalevaluation serviceMedicalevaluation) { |
| | |
| | | * 获取医学评估详细信息 |
| | | */ |
| | | @ApiOperation("通过id获取医疗评估信息") |
| | | //@PreAuthorize("@ss.hasPermi('project:medicalevaluation:query')") |
| | | //// @PreAuthorize("@ss.hasPermi('project:medicalevaluation:query')") |
| | | @GetMapping(value = "/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) { |
| | | return AjaxResult.success(serviceMedicalevaluationService.getById(id)); |
| | |
| | | * 新增医学评估 |
| | | */ |
| | | @ApiOperation("新增医学评估") |
| | | //@PreAuthorize("@ss.hasPermi('project:medicalevaluation:add')") |
| | | //// @PreAuthorize("@ss.hasPermi('project:medicalevaluation:add')") |
| | | @Log(title = "医学评估", businessType = BusinessType.INSERT) |
| | | @PostMapping("/add") |
| | | // @NotRepeatCommit(key = "param:arg[1]", value = 30000) |
| | |
| | | * 修改医学评估 |
| | | */ |
| | | @ApiOperation("修改医学评估") |
| | | //@PreAuthorize("@ss.hasPermi('project:medicalevaluation:edit')") |
| | | //// @PreAuthorize("@ss.hasPermi('project:medicalevaluation:edit')") |
| | | @Log(title = "医学评估", businessType = BusinessType.UPDATE) |
| | | @PostMapping("/edit") |
| | | // @NotRepeatCommit(key = "param:arg[1]", value = 30000) |
| | |
| | | * 删除医学评估 |
| | | */ |
| | | @ApiOperation("删除医学评估") |
| | | //@PreAuthorize("@ss.hasPermi('project:medicalevaluation:remove')") |
| | | //// @PreAuthorize("@ss.hasPermi('project:medicalevaluation:remove')") |
| | | @Log(title = "医学评估", businessType = BusinessType.DELETE) |
| | | @GetMapping("/remove/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) { |