BMS结算对象按照创建时间倒序排序新创建的在前面

This commit is contained in:
秦鸿展
2026-02-28 16:20:16 +08:00
parent 3875a92299
commit c92e3e0ec6
@@ -94,7 +94,7 @@
from settlement_customers
where del_flag = 1
<include refid="common_where"/>
ORDER BY create_time DESC
ORDER BY create_time IS NULL, create_time DESC
</select>
<select id="querySettlementObjects"
resultType="com.mhd.bms.domain.settlementCustomers.repository.po.SettlementCustomersPO">