|  |  |  | 
|---|
|  |  |  | @ApiOperation("修改捐献流程") | 
|---|
|  |  |  | //@PreAuthorize("@ss.hasPermi('system:donateflowchart:edit')") | 
|---|
|  |  |  | @Log(title = "捐献流程", businessType = BusinessType.UPDATE) | 
|---|
|  |  |  | @PutMapping | 
|---|
|  |  |  | @PostMapping("/edit") | 
|---|
|  |  |  | @RepeatSubmit | 
|---|
|  |  |  | public AjaxResult edit(@RequestBody ServiceDonateflowchart serviceDonateflowchart) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | 
|---|
|  |  |  | @ApiOperation("删除捐献流程") | 
|---|
|  |  |  | //@PreAuthorize("@ss.hasPermi('system:donateflowchart:remove')") | 
|---|
|  |  |  | @Log(title = "捐献流程", businessType = BusinessType.DELETE) | 
|---|
|  |  |  | @DeleteMapping("/{ids}") | 
|---|
|  |  |  | @GetMapping("/remove/{ids}") | 
|---|
|  |  |  | public AjaxResult remove(@PathVariable Long[] ids) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | return toAjax(serviceDonateflowchartService.removeByIds(Arrays.asList(ids))); | 
|---|