| | |
| | | @ApiOperation("修改医学评估") |
| | | //@PreAuthorize("@ss.hasPermi('project:medicalevaluation:edit')") |
| | | @Log(title = "医学评估", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | @PostMapping("/edit") |
| | | @RepeatSubmit |
| | | public AjaxResult edit(@RequestBody ServiceMedicalevaluation serviceMedicalevaluation) |
| | | { |
| | |
| | | @ApiOperation("删除医学评估") |
| | | //@PreAuthorize("@ss.hasPermi('project:medicalevaluation:remove')") |
| | | @Log(title = "医学评估", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | @GetMapping("/remove/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) |
| | | { |
| | | return toAjax(serviceMedicalevaluationService.removeByIds(Arrays.asList(ids))); |