fix:信用卡管理,bug修复。

This commit is contained in:
tianyongbao
2024-07-08 16:42:58 +08:00
parent 71add79779
commit 66736ec3c0
2 changed files with 6 additions and 2 deletions

View File

@@ -121,7 +121,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="billDate != null and billDate != ''">#{billDate},</if>
<if test="payDate != null and payDate != ''">#{payDate},</if>
<if test="delayPeriod != null">#{delayPeriod},</if>
<if test="creditLimit != null and creditLimit != ''">#{creditLimit},</if>
<if test="creditLimit != null ">#{creditLimit},</if>
<if test="effectiveDate != null">#{effectiveDate},</if>
<if test="cvv != null and cvv != ''">#{cvv},</if>
<if test="createBy != null">#{createBy},</if>
@@ -149,7 +149,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="billDate != null and billDate != ''">bill_date = #{billDate},</if>
<if test="payDate != null and payDate != ''">pay_date = #{payDate},</if>
<if test="delayPeriod != null">delay_period = #{delayPeriod},</if>
<if test="creditLimit != null and creditLimit != ''">credit_limit = #{creditLimit},</if>
<if test="creditLimit != null">credit_limit = #{creditLimit},</if>
<if test="effectiveDate != null">effective_date = #{effectiveDate},</if>
<if test="cvv != null and cvv != ''">cvv = #{cvv},</if>
<if test="createBy != null">create_by = #{createBy},</if>