|
@@ -9,6 +9,7 @@
|
|
|
<result property="bankNumber" column="bank_number" jdbcType="VARCHAR"/>
|
|
<result property="bankNumber" column="bank_number" jdbcType="VARCHAR"/>
|
|
|
<result property="bankAccount" column="bank_account" jdbcType="VARCHAR"/>
|
|
<result property="bankAccount" column="bank_account" jdbcType="VARCHAR"/>
|
|
|
<result property="userId" column="user_id" jdbcType="VARCHAR"/>
|
|
<result property="userId" column="user_id" jdbcType="VARCHAR"/>
|
|
|
|
|
+ <result property="isDefault" column="is_default" jdbcType="TINYINT"/>
|
|
|
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
|
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
|
|
</resultMap>
|
|
</resultMap>
|
|
|
|
|
|
|
@@ -38,6 +39,7 @@
|
|
|
a.id as "id",
|
|
a.id as "id",
|
|
|
a.bank_number as "bankNumber",
|
|
a.bank_number as "bankNumber",
|
|
|
a.bank_account as "bankAccount",
|
|
a.bank_account as "bankAccount",
|
|
|
|
|
+ a.is_default as "isDefault",
|
|
|
a.user_id as "userId"
|
|
a.user_id as "userId"
|
|
|
from sys_user_bank_card a
|
|
from sys_user_bank_card a
|
|
|
<where>
|
|
<where>
|