```修复:确保财务付款查询按状态和时间正确排序
修正了FinancialPaymentMapper.xml中的排序逻辑,以便按状态升序和结束时间降序正确排序财务付款记录。之前的实现没有考虑状态,导致排序不准确。 ```
This commit is contained in:
parent
c2dfbdc508
commit
8032c41e6e
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user