| | |
| | | * 查询VIEW列表 |
| | | */ |
| | | @ApiOperation("查询VIEW列表") |
| | | @PreAuthorize("@ss.hasPermi('system:total:list')") |
| | | // @PreAuthorize("@ss.hasPermi('system:total:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(VExpertfeeTotal vExpertfeeTotal) |
| | | { |
| | |
| | | * 导出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) |
| | |
| | | * 获取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) |
| | | { |
| | |
| | | * 新增VIEW |
| | | */ |
| | | @ApiOperation("新增VIEW") |
| | | @PreAuthorize("@ss.hasPermi('system:total:add')") |
| | | // @PreAuthorize("@ss.hasPermi('system:total:add')") |
| | | @Log(title = "VIEW", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | @RepeatSubmit |
| | |
| | | * 修改VIEW |
| | | */ |
| | | @ApiOperation("修改VIEW") |
| | | @PreAuthorize("@ss.hasPermi('system:total:edit')") |
| | | // @PreAuthorize("@ss.hasPermi('system:total:edit')") |
| | | @Log(title = "VIEW", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | @RepeatSubmit |
| | |
| | | * 删除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) |