liusheng
2024-08-16 4274addd786ff7b0e6faffb59e90029911b90232
ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceFundSharedController.java
@@ -35,7 +35,7 @@
     * 查询费用申请主列表
     */
    @ApiOperation("查询费用申请主列表")
    @PreAuthorize("@ss.hasPermi('system:shared:list')")
    // @PreAuthorize("@ss.hasPermi('system:shared:list')")
    @GetMapping("/list")
    public TableDataInfo list(ServiceFundShared serviceFundShared) {
        startPage();
@@ -47,7 +47,7 @@
     * 导出费用申请主列表
     */
    @ApiOperation("导出费用申请主列表")
    @PreAuthorize("@ss.hasPermi('system:shared:export')")
    // @PreAuthorize("@ss.hasPermi('system:shared:export')")
    @Log(title = "费用申请主", businessType = BusinessType.EXPORT)
    @GetMapping("/export")
    public AjaxResult export(ServiceFundShared serviceFundShared) {
@@ -60,7 +60,7 @@
     * 获取费用申请主详细信息
     */
    @ApiOperation("获取费用申请主详细信息")
    @PreAuthorize("@ss.hasPermi('system:shared:query')")
    // @PreAuthorize("@ss.hasPermi('system:shared:query')")
    @GetMapping(value = "/{id}")
    public AjaxResult getInfo(@PathVariable("id") Long id) {
        return AjaxResult.success(serviceFundSharedService.getById(id));
@@ -70,7 +70,7 @@
     * 新增费用申请主
     */
    @ApiOperation("新增费用申请主")
    @PreAuthorize("@ss.hasPermi('system:shared:add')")
    // @PreAuthorize("@ss.hasPermi('system:shared:add')")
    @Log(title = "费用申请主", businessType = BusinessType.INSERT)
    @PostMapping("/add")
    @RepeatSubmit
@@ -83,7 +83,7 @@
     * 修改费用申请主
     */
    @ApiOperation("修改费用申请主")
    @PreAuthorize("@ss.hasPermi('system:shared:edit')")
    // @PreAuthorize("@ss.hasPermi('system:shared:edit')")
    @Log(title = "费用申请主", businessType = BusinessType.UPDATE)
    @PutMapping
    @RepeatSubmit
@@ -95,7 +95,7 @@
     * 删除费用申请主
     */
    @ApiOperation("删除费用申请主")
    @PreAuthorize("@ss.hasPermi('system:shared:remove')")
    // @PreAuthorize("@ss.hasPermi('system:shared:remove')")
    @Log(title = "费用申请主", businessType = BusinessType.DELETE)
    @DeleteMapping("/{ids}")
    public AjaxResult remove(@PathVariable Long[] ids) {