From 53e4e0a0fb2928d153230953c631af6c17e9c385 Mon Sep 17 00:00:00 2001
From: yxh <172933527@qq.com>
Date: 星期二, 01 九月 2026 20:38:22 +0800
Subject: [PATCH] 修改了排序

---
 ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceFundtaxController.java |   10 ++++------
 1 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceFundtaxController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceFundtaxController.java
index ca63645..e9aaf72 100644
--- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceFundtaxController.java
+++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceFundtaxController.java
@@ -6,9 +6,11 @@
 import com.ruoyi.common.core.domain.AjaxResult;
 import com.ruoyi.common.core.page.TableDataInfo;
 import com.ruoyi.common.enums.BusinessType;
+import com.ruoyi.project.domain.ServiceDonateannex;
 import com.ruoyi.project.domain.ServiceFund;
 import com.ruoyi.project.domain.ServiceFundtax;
 import com.ruoyi.project.domain.vo.FundTaxVO;
+import com.ruoyi.project.domain.vo.SpFinancialExpensesFundOut;
 import com.ruoyi.project.service.IServiceFundService;
 import com.ruoyi.project.service.IServiceFundtaxService;
 import io.swagger.annotations.Api;
@@ -41,11 +43,11 @@
      * 鏌ヨ涓撳璐圭敤绠楃◣鐢宠涓诲垪琛�
      */
     @ApiOperation("鏌ヨ涓撳璐圭敤绠楃◣鐢宠涓诲垪琛�")
-    @PreAuthorize("@ss.hasPermi('system:fundtax:list')")
     @GetMapping("/list")
     public TableDataInfo list(ServiceFundtax serviceFundtax) {
         startPage();
         List<ServiceFundtax> list = serviceFundtaxService.queryList(serviceFundtax);
+//        list.sort(Comparator.comparing(ServiceFundtax::getCreateTime, Comparator.nullsLast(Comparator.reverseOrder())));
         return getDataTable(list);
     }
 //
@@ -53,7 +55,7 @@
 //     * 瀵煎嚭涓撳璐圭敤绠楃◣鐢宠涓诲垪琛�
 //     */
 //    @ApiOperation("瀵煎嚭涓撳璐圭敤绠楃◣鐢宠涓诲垪琛�")
-//    @PreAuthorize("@ss.hasPermi('system:fundtax:export')")
+//    // @PreAuthorize("@ss.hasPermi('system:fundtax:export')")
 //    @Log(title = "涓撳璐圭敤绠楃◣鐢宠涓�", businessType = BusinessType.EXPORT)
 //    @GetMapping("/export")
 //    public AjaxResult export(ServiceFundtax serviceFundtax) {
@@ -66,7 +68,6 @@
      * 鑾峰彇涓撳璐圭敤绠楃◣鐢宠涓昏缁嗕俊鎭�
      */
     @ApiOperation("鑾峰彇涓撳璐圭敤绠楃◣鐢宠涓昏缁嗕俊鎭�")
-    @PreAuthorize("@ss.hasPermi('system:fundtax:query')")
     @GetMapping(value = "/getInfo/{id}")
     public AjaxResult getInfo(@PathVariable("id") Long id) {
         ServiceFundtax serviceFundtax = serviceFundtaxService.getById(id);
@@ -81,7 +82,6 @@
      * 淇敼涓撳璐圭敤绠楃◣鐢宠涓�
      */
     @ApiOperation("淇敼涓撳璐圭敤绠楃◣鐢宠涓�")
-    @PreAuthorize("@ss.hasPermi('system:fundtax:edit')")
     @Log(title = "涓撳璐圭敤绠楃◣鐢宠涓�", businessType = BusinessType.UPDATE)
     @PostMapping("/edit")
     @RepeatSubmit
@@ -93,7 +93,6 @@
      * 鍒犻櫎涓撳璐圭敤绠楃◣鐢宠涓�
      */
     @ApiOperation("鍒犻櫎涓撳璐圭敤绠楃◣鐢宠涓�")
-    @PreAuthorize("@ss.hasPermi('system:fundtax:remove')")
     @Log(title = "涓撳璐圭敤绠楃◣鐢宠涓�", businessType = BusinessType.DELETE)
     @GetMapping("/remove/{id}")
     public AjaxResult remove(@PathVariable Long id) {
@@ -105,7 +104,6 @@
      * 鏂板涓撳璐圭敤绠楃◣鐢宠涓�
      */
     @ApiOperation("鏂板涓撳璐圭敤绠楃◣鐢宠涓�")
-    @PreAuthorize("@ss.hasPermi('system:fundtax:add')")
     @Log(title = "涓撳璐圭敤绠楃◣鐢宠涓�", businessType = BusinessType.INSERT)
     @PostMapping("/addFundTax")
     public AjaxResult addFundTax(@RequestBody ServiceFundtax serviceFundtax) {

--
Gitblit v1.9.3