| | |
| | | package com.ruoyi.project.controller; |
| | | package com.ruoyi.web.controller.project; |
| | | |
| | | import java.util.Arrays; |
| | | import java.util.List; |
| | |
| | | @ApiOperation("修改费用申请明细") |
| | | @PreAuthorize("@ss.hasPermi('project:funddetailshared:edit')") |
| | | @Log(title = "费用申请明细", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | @PostMapping("/edit") |
| | | @RepeatSubmit |
| | | public AjaxResult edit(@RequestBody ServiceFunddetailShared serviceFunddetailShared) |
| | | { |
| | |
| | | @ApiOperation("删除费用申请明细") |
| | | @PreAuthorize("@ss.hasPermi('project:funddetailshared:remove')") |
| | | @Log(title = "费用申请明细", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | @GetMapping("/remove/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) |
| | | { |
| | | return toAjax(serviceFunddetailSharedService.removeByIds(Arrays.asList(ids))); |