liusheng
2024-05-16 c678e5fe694f06b023369ca0fc5d2f1cf50f6599
ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/VExpertfeeTotalController.java
@@ -36,7 +36,7 @@
     * 查询VIEW列表
     */
    @ApiOperation("查询VIEW列表")
    @PreAuthorize("@ss.hasPermi('system:total:list')")
    // @PreAuthorize("@ss.hasPermi('system:total:list')")
    @GetMapping("/list")
    public TableDataInfo list(VExpertfeeTotal vExpertfeeTotal)
    {
@@ -49,7 +49,7 @@
     * 导出VIEW列表
     */
    @ApiOperation("导出VIEW列表")
    @PreAuthorize("@ss.hasPermi('system:total:export')")
    // @PreAuthorize("@ss.hasPermi('system:total:export')")
    @Log(title = "VIEW", businessType = BusinessType.EXPORT)
    @GetMapping("/export")
    public AjaxResult export(VExpertfeeTotal vExpertfeeTotal)
@@ -63,7 +63,7 @@
     * 获取VIEW详细信息
     */
    @ApiOperation("获取VIEW详细信息")
    @PreAuthorize("@ss.hasPermi('system:total:query')")
    // @PreAuthorize("@ss.hasPermi('system:total:query')")
    @GetMapping(value = "/{fundTaxId}")
    public AjaxResult getInfo(@PathVariable("fundTaxId") Long fundTaxId)
    {
@@ -74,7 +74,7 @@
     * 新增VIEW
     */
    @ApiOperation("新增VIEW")
    @PreAuthorize("@ss.hasPermi('system:total:add')")
    // @PreAuthorize("@ss.hasPermi('system:total:add')")
    @Log(title = "VIEW", businessType = BusinessType.INSERT)
    @PostMapping
    @RepeatSubmit
@@ -87,7 +87,7 @@
     * 修改VIEW
     */
    @ApiOperation("修改VIEW")
    @PreAuthorize("@ss.hasPermi('system:total:edit')")
    // @PreAuthorize("@ss.hasPermi('system:total:edit')")
    @Log(title = "VIEW", businessType = BusinessType.UPDATE)
    @PutMapping
    @RepeatSubmit    
@@ -100,7 +100,7 @@
     * 删除VIEW
     */
    @ApiOperation("删除VIEW")
    @PreAuthorize("@ss.hasPermi('system:total:remove')")
    // @PreAuthorize("@ss.hasPermi('system:total:remove')")
    @Log(title = "VIEW", businessType = BusinessType.DELETE)
    @DeleteMapping("/{fundTaxIds}")
    public AjaxResult remove(@PathVariable Long[] fundTaxIds)