| | |
| | | * 查询费用申请明细列表 |
| | | */ |
| | | @ApiOperation("查询费用申请明细列表") |
| | | @PreAuthorize("@ss.hasPermi('project:funddetailshared:list')") |
| | | // @PreAuthorize("@ss.hasPermi('project:funddetailshared:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(ServiceFunddetailShared serviceFunddetailShared) |
| | | { |
| | |
| | | * 导出费用申请明细列表 |
| | | */ |
| | | @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) |
| | |
| | | * 获取费用申请明细详细信息 |
| | | */ |
| | | @ApiOperation("获取费用申请明细详细信息") |
| | | @PreAuthorize("@ss.hasPermi('project:funddetailshared:query')") |
| | | // @PreAuthorize("@ss.hasPermi('project:funddetailshared:query')") |
| | | @GetMapping(value = "/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) |
| | | { |
| | |
| | | * 新增费用申请明细 |
| | | */ |
| | | @ApiOperation("新增费用申请明细") |
| | | @PreAuthorize("@ss.hasPermi('project:funddetailshared:add')") |
| | | // @PreAuthorize("@ss.hasPermi('project:funddetailshared:add')") |
| | | @Log(title = "费用申请明细", businessType = BusinessType.INSERT) |
| | | @PostMapping("/add") |
| | | @RepeatSubmit |
| | |
| | | * 修改费用申请明细 |
| | | */ |
| | | @ApiOperation("修改费用申请明细") |
| | | @PreAuthorize("@ss.hasPermi('project:funddetailshared:edit')") |
| | | // @PreAuthorize("@ss.hasPermi('project:funddetailshared:edit')") |
| | | @Log(title = "费用申请明细", businessType = BusinessType.UPDATE) |
| | | @PostMapping("/edit") |
| | | @RepeatSubmit |
| | |
| | | * 删除费用申请明细 |
| | | */ |
| | | @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) |