```修复:确保财务付款查询按状态和时间正确排序

修正了FinancialPaymentMapper.xml中的排序逻辑,以便按状态升序和结束时间降序正确排序财务付款记录。之前的实现没有考虑状态,导致排序不准确。
```
This commit is contained in:
aikai 2024-08-20 14:08:49 +08:00
parent c2dfbdc508
commit 8032c41e6e

View File

@ -71,8 +71,8 @@
</if>
</if>
</where>
order by a.create_time desc
</select>
ORDER BY a.status asc,a.end_time DESC
</select>
<select id="getFinancialPayment"
resultType="cn.iocoder.yudao.module.bpm.dal.dataobject.financialpayment.FinancialPaymentDO">
select