fix: 记账账户储蓄账户,排序问题修改。

This commit is contained in:
tianyongbao
2024-07-26 11:11:36 +08:00
parent 64092faf88
commit e8b6bab36d
2 changed files with 2 additions and 2 deletions

View File

@@ -69,7 +69,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</where> </where>
<!-- 数据范围过滤 --> <!-- 数据范围过滤 -->
${params.dataScope} ${params.dataScope}
order by a.type asc,a.update_time desc order by a.type asc,bcl.debit_type asc,a.update_time desc
</select> </select>
<select id="selectAccountsById" parameterType="Long" resultMap="AccountsResult"> <select id="selectAccountsById" parameterType="Long" resultMap="AccountsResult">

View File

@@ -80,7 +80,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</where> </where>
<!-- 数据范围过滤 --> <!-- 数据范围过滤 -->
${params.dataScope} ${params.dataScope}
order by a.type asc, a.bill_date asc,a.update_time desc order by a.type asc, a.bill_date asc,a.debit_type asc,a.update_time desc
</select> </select>
<select id="selectBankCardLendById" parameterType="Long" resultMap="BankCardLendResult"> <select id="selectBankCardLendById" parameterType="Long" resultMap="BankCardLendResult">