xiangpei
2024-04-23 ab4e150d41e0200b64a75c59b668a9385b7782fd
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)
    {