liusheng
2023-09-09 f0f6c3b39dddf5cfdf145425687e9339453b5ba1
ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceFunddetailSharedController.java
@@ -95,7 +95,7 @@
    @ApiOperation("修改费用申请明细")
    @PreAuthorize("@ss.hasPermi('project:funddetailshared:edit')")
    @Log(title = "费用申请明细", businessType = BusinessType.UPDATE)
    @PutMapping
    @PostMapping("/edit")
    @RepeatSubmit    
    public AjaxResult edit(@RequestBody ServiceFunddetailShared serviceFunddetailShared)
    {
@@ -108,7 +108,7 @@
    @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)));