fuliqi
2024-04-11 5a106c938e39d1f82339c122c547434c3d6a5685
ycl-server/src/main/java/com/ycl/platform/controller/CalculateRecordController.java
@@ -31,7 +31,7 @@
    /**
     * 查询核算记录列表
     */
    @PreAuthorize("@ss.hasPermi('system:record:list')")
//    @PreAuthorize("@ss.hasPermi('system:record:list')")
    @GetMapping("/list")
    public TableDataInfo list(CalculateRecord calculateRecord)
    {
@@ -43,7 +43,7 @@
    /**
     * 导出核算记录列表
     */
    @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)
@@ -56,7 +56,7 @@
    /**
     * 获取核算记录详细信息
     */
    @PreAuthorize("@ss.hasPermi('system:record:query')")
//    @PreAuthorize("@ss.hasPermi('system:record:query')")
    @GetMapping(value = "/{id}")
    public AjaxResult getInfo(@PathVariable("id") Long id)
    {