| | |
| | | /** |
| | | * 查询核算记录列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:record:list')") |
| | | // @PreAuthorize("@ss.hasPermi('system:record:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(CalculateRecord calculateRecord) |
| | | { |
| | |
| | | /** |
| | | * 导出核算记录列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:record:export')") |
| | | // @PreAuthorize("@ss.hasPermi('system:record:export')") |
| | | @Log(title = "核算记录", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, CalculateRecord calculateRecord) |
| | |
| | | /** |
| | | * 获取核算记录详细信息 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:record:query')") |
| | | // @PreAuthorize("@ss.hasPermi('system:record:query')") |
| | | @GetMapping(value = "/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) |
| | | { |