|
@@ -56,6 +56,9 @@
|
|
|
<if test="fkCustomerId != null">
|
|
|
fk_customer_id,
|
|
|
</if>
|
|
|
+ <if test="companyType != null">
|
|
|
+ company_type,
|
|
|
+ </if>
|
|
|
<if test="companyName != null">
|
|
|
company_name,
|
|
|
</if>
|
|
@@ -94,6 +97,9 @@
|
|
|
<if test="fkCustomerId != null">
|
|
|
#{fkCustomerId,jdbcType=CHAR},
|
|
|
</if>
|
|
|
+ <if test="companyType != null">
|
|
|
+ #{companyType,jdbcType=CHAR},
|
|
|
+ </if>
|
|
|
<if test="companyName != null">
|
|
|
#{companyName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
@@ -133,6 +139,9 @@
|
|
|
<if test="fkCustomerId != null">
|
|
|
fk_customer_id = #{fkCustomerId,jdbcType=CHAR},
|
|
|
</if>
|
|
|
+ <if test="companyType != null">
|
|
|
+ company_type = #{companyType,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
<if test="companyName != null">
|
|
|
company_name = #{companyName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
@@ -169,6 +178,7 @@
|
|
|
<update id="updateByPrimaryKey" parameterType="com.hcloud.microserver.system.facade.carbon.entity.CustomerCompanyInfo">
|
|
|
update t_customer_company_info
|
|
|
set fk_customer_id = #{fkCustomerId,jdbcType=CHAR},
|
|
|
+ company_type = #{companyType,jdbcType=VARCHAR},
|
|
|
company_name = #{companyName,jdbcType=VARCHAR},
|
|
|
org_code = #{orgCode,jdbcType=VARCHAR},
|
|
|
principals = #{principals,jdbcType=VARCHAR},
|