update 重新计算分账扣除金额

This commit is contained in:
2023-08-31 16:47:18 +08:00
parent 82e6a5b42a
commit d8f16ac471
5 changed files with 73 additions and 1 deletions

View File

@@ -509,4 +509,14 @@
and balance_amt > '0.00'
and member_id = #{memberId,jdbcType=VARCHAR}
</select>
<select id="selectAvailableFreeze" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from member_adapay_record
where del_flag = '0'
and scenario_type = 'balance'
and freeze_amt &gt; '0.00'
and member_id = #{memberId,jdbcType=VARCHAR}
</select>
</mapper>