liusheng
2023-09-09 f0f6c3b39dddf5cfdf145425687e9339453b5ba1
ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/BaseFinancesubjectController.java
@@ -89,7 +89,7 @@
    @ApiOperation("修改收入费用科目")
    //@PreAuthorize("@ss.hasPermi('project:financesubject:edit')")
    @Log(title = "收入费用科目", businessType = BusinessType.UPDATE)
    @PutMapping
    @PostMapping("/edit")
    @RepeatSubmit    
    public AjaxResult edit(@RequestBody BaseFinancesubject baseFinancesubject)
    {
@@ -102,7 +102,7 @@
    @ApiOperation("删除收入费用科目")
    //@PreAuthorize("@ss.hasPermi('project:financesubject:remove')")
    @Log(title = "收入费用科目", businessType = BusinessType.DELETE)
    @DeleteMapping("/{ids}")
    @GetMapping("/remove/{ids}")
    public AjaxResult remove(@PathVariable Long[] ids)
    {
        return toAjax(baseFinancesubjectService.removeByIds(Arrays.asList(ids)));