mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-29 07:25:05 +08:00
update 会员发票抬头 新增电子邮箱字段
This commit is contained in:
@@ -11,6 +11,7 @@
|
||||
<result property="name" column="name" />
|
||||
<result property="taxId" column="tax_id" />
|
||||
<result property="unitAddress" column="unit_address" />
|
||||
<result property="email" column="email" />
|
||||
<result property="phoneNumber" column="phone_number" />
|
||||
<result property="bankName" column="bank_name" />
|
||||
<result property="bankAccountNumber" column="bank_account_number" />
|
||||
@@ -23,7 +24,7 @@
|
||||
</resultMap>
|
||||
|
||||
<sql id="Base_Column_List">
|
||||
id, member_id, title_type, name, tax_id, unit_address, phone_number, bank_name, bank_account_number,
|
||||
id, member_id, title_type, name, tax_id, unit_address, email, phone_number, bank_name, bank_account_number,
|
||||
default_flag, create_time, create_by, update_time, update_by, del_flag
|
||||
</sql>
|
||||
|
||||
@@ -60,6 +61,7 @@
|
||||
<if test="name != null">name,</if>
|
||||
<if test="taxId != null">tax_id,</if>
|
||||
<if test="unitAddress != null">unit_address,</if>
|
||||
<if test="email != null">email,</if>
|
||||
<if test="phoneNumber != null">phone_number,</if>
|
||||
<if test="bankName != null">bank_name,</if>
|
||||
<if test="bankAccountNumber != null">bank_account_number,</if>
|
||||
@@ -76,6 +78,7 @@
|
||||
<if test="name != null">#{name},</if>
|
||||
<if test="taxId != null">#{taxId},</if>
|
||||
<if test="unitAddress != null">#{unitAddress},</if>
|
||||
<if test="email != null">#{email},</if>
|
||||
<if test="phoneNumber != null">#{phoneNumber},</if>
|
||||
<if test="bankName != null">#{bankName},</if>
|
||||
<if test="bankAccountNumber != null">#{bankAccountNumber},</if>
|
||||
@@ -96,6 +99,7 @@
|
||||
<if test="name != null">name = #{name},</if>
|
||||
<if test="taxId != null">tax_id = #{taxId},</if>
|
||||
<if test="unitAddress != null">unit_address = #{unitAddress},</if>
|
||||
<if test="email != null">email = #{email},</if>
|
||||
<if test="phoneNumber != null">phone_number = #{phoneNumber},</if>
|
||||
<if test="bankName != null">bank_name = #{bankName},</if>
|
||||
<if test="bankAccountNumber != null">bank_account_number = #{bankAccountNumber},</if>
|
||||
|
||||
Reference in New Issue
Block a user