From 8f27ec5f5e59ae9f5343b9ef269b1c617ec11aca Mon Sep 17 00:00:00 2001 From: yupeng <roc__yu@163.com> Date: 星期二, 04 三月 2025 17:18:18 +0800 Subject: [PATCH] feat: 账单列表按应缴费日期、创建时间来排序 --- ruoyi-system/src/main/resources/mapper/system/TBillMapper.xml | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ruoyi-system/src/main/resources/mapper/system/TBillMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TBillMapper.xml index 886aa8d..aaa1347 100644 --- a/ruoyi-system/src/main/resources/mapper/system/TBillMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/TBillMapper.xml @@ -63,7 +63,7 @@ and t.id = #{query.userId} </if> </where> - order by b.create_time desc + order by b.payable_fees_time desc,b.create_time desc </select> <select id="getBillList" resultType="com.ruoyi.system.dto.TBillDto"> SELECT -- Gitblit v1.7.1