fix: 智聪记账管理,非柜面限额调整bug修复。

This commit is contained in:
tianyongbao
2025-02-06 14:34:18 +08:00
parent 523e3c8499
commit aa398f5380
3 changed files with 28 additions and 1 deletions

View File

@@ -136,4 +136,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{id}
</foreach>
</update>
<select id="selectRecentBankCardLimitHistoryById" parameterType="Long" resultMap="BankCardLimitHistoryResult">
<include refid="selectBankCardLimitHistoryVo"/>
where a.del_flag='0'
and a.bank_card_lend_id = #{id}
order by a.create_time desc
limit 1
</select>
</mapper>