liusheng
2024-07-22 9e99e7e192c62c2274f8f5362b354cbf55c3d80f
ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceFunddetailSharedController.java
@@ -42,7 +42,7 @@
     * 查询费用申请明细列表
     */
    @ApiOperation("查询费用申请明细列表")
    @PreAuthorize("@ss.hasPermi('project:funddetailshared:list')")
    // @PreAuthorize("@ss.hasPermi('project:funddetailshared:list')")
    @GetMapping("/list")
    public TableDataInfo list(ServiceFunddetailShared serviceFunddetailShared)
    {
@@ -55,7 +55,7 @@
     * 导出费用申请明细列表
     */
    @ApiOperation("导出费用申请明细列表")
    @PreAuthorize("@ss.hasPermi('project:funddetailshared:export')")
    // @PreAuthorize("@ss.hasPermi('project:funddetailshared:export')")
    @Log(title = "费用申请明细", businessType = BusinessType.EXPORT)
    @GetMapping("/export")
    public AjaxResult export(ServiceFunddetailShared serviceFunddetailShared)
@@ -69,7 +69,7 @@
     * 获取费用申请明细详细信息
     */
    @ApiOperation("获取费用申请明细详细信息")
    @PreAuthorize("@ss.hasPermi('project:funddetailshared:query')")
    // @PreAuthorize("@ss.hasPermi('project:funddetailshared:query')")
    @GetMapping(value = "/{id}")
    public AjaxResult getInfo(@PathVariable("id") Long id)
    {
@@ -80,7 +80,7 @@
     * 新增费用申请明细
     */
    @ApiOperation("新增费用申请明细")
    @PreAuthorize("@ss.hasPermi('project:funddetailshared:add')")
    // @PreAuthorize("@ss.hasPermi('project:funddetailshared:add')")
    @Log(title = "费用申请明细", businessType = BusinessType.INSERT)
    @PostMapping("/add")
    @RepeatSubmit
@@ -94,7 +94,7 @@
     * 修改费用申请明细
     */
    @ApiOperation("修改费用申请明细")
    @PreAuthorize("@ss.hasPermi('project:funddetailshared:edit')")
    // @PreAuthorize("@ss.hasPermi('project:funddetailshared:edit')")
    @Log(title = "费用申请明细", businessType = BusinessType.UPDATE)
    @PostMapping("/edit")
    @RepeatSubmit    
@@ -107,7 +107,7 @@
     * 删除费用申请明细
     */
    @ApiOperation("删除费用申请明细")
    @PreAuthorize("@ss.hasPermi('project:funddetailshared:remove')")
    // @PreAuthorize("@ss.hasPermi('project:funddetailshared:remove')")
    @Log(title = "费用申请明细", businessType = BusinessType.DELETE)
    @GetMapping("/remove/{ids}")
    public AjaxResult remove(@PathVariable Long[] ids)