|  |  |  | 
|---|
|  |  |  | @ApiOperation("修改捐献附件信息") | 
|---|
|  |  |  | //@PreAuthorize("@ss.hasPermi('project:donateannex:edit')") | 
|---|
|  |  |  | @Log(title = "捐献附件", businessType = BusinessType.UPDATE) | 
|---|
|  |  |  | @PutMapping | 
|---|
|  |  |  | @PostMapping("/edit") | 
|---|
|  |  |  | @RepeatSubmit | 
|---|
|  |  |  | public AjaxResult edit(@RequestBody ServiceDonateannex serviceDonateannex) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | 
|---|
|  |  |  | @ApiOperation("删除捐献文件信息") | 
|---|
|  |  |  | //@PreAuthorize("@ss.hasPermi('project:donateannex:remove')") | 
|---|
|  |  |  | @Log(title = "捐献附件", businessType = BusinessType.DELETE) | 
|---|
|  |  |  | @DeleteMapping("/{ids}") | 
|---|
|  |  |  | @GetMapping("/remove/{ids}") | 
|---|
|  |  |  | public AjaxResult remove(@PathVariable Long[] ids) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | return toAjax(serviceDonateannexService.removeByIds(Arrays.asList(ids))); | 
|---|