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