|
@@ -25,6 +25,7 @@
|
|
<result property="address" column="address_"/>
|
|
<result property="address" column="address_"/>
|
|
<result property="companyStampFile" column="company_stamp_file"/>
|
|
<result property="companyStampFile" column="company_stamp_file"/>
|
|
<result property="promoter" column="promoter_"/>
|
|
<result property="promoter" column="promoter_"/>
|
|
|
|
+ <result property="promoterBindTime" column="promoter_bind_time"/>
|
|
<result property="remark" column="remark_"/>
|
|
<result property="remark" column="remark_"/>
|
|
<result property="buyId" column="buy_id"/>
|
|
<result property="buyId" column="buy_id"/>
|
|
<result property="status" column="status_"/>
|
|
<result property="status" column="status_"/>
|
|
@@ -47,7 +48,7 @@
|
|
uscc_code,uscc_files,type_,business_nature,business_scope,
|
|
uscc_code,uscc_files,type_,business_nature,business_scope,
|
|
industry_type,employees_number,insured_number,person_,tel_,mail_,postal_,
|
|
industry_type,employees_number,insured_number,person_,tel_,mail_,postal_,
|
|
address_,company_stamp_file,promoter_,remark_,buy_id,status_,
|
|
address_,company_stamp_file,promoter_,remark_,buy_id,status_,
|
|
- create_by,create_time,update_by,update_time,del_flag)
|
|
|
|
|
|
+ create_by,create_time,update_by,update_time,del_flag,promoter_bind_time)
|
|
values
|
|
values
|
|
(
|
|
(
|
|
#{id,jdbcType=VARCHAR}
|
|
#{id,jdbcType=VARCHAR}
|
|
@@ -79,6 +80,7 @@
|
|
,#{updateBy,jdbcType=VARCHAR}
|
|
,#{updateBy,jdbcType=VARCHAR}
|
|
,#{updateTime,jdbcType= TIMESTAMP }
|
|
,#{updateTime,jdbcType= TIMESTAMP }
|
|
,#{delFlag,jdbcType= NUMERIC }
|
|
,#{delFlag,jdbcType= NUMERIC }
|
|
|
|
+ ,#{promoterBindTime,jdbcType= TIMESTAMP }
|
|
)
|
|
)
|
|
]]>
|
|
]]>
|
|
</insert>
|
|
</insert>
|
|
@@ -172,6 +174,9 @@
|
|
<if test="delFlag!=null">
|
|
<if test="delFlag!=null">
|
|
del_flag=#{delFlag,jdbcType= NUMERIC },
|
|
del_flag=#{delFlag,jdbcType= NUMERIC },
|
|
</if>
|
|
</if>
|
|
|
|
+ <if test="promoter!=null">
|
|
|
|
+ promoter_bind_time=#{promoterBindTime,jdbcType=VARCHAR},
|
|
|
|
+ </if>
|
|
</set>
|
|
</set>
|
|
where id_=#{id}
|
|
where id_=#{id}
|
|
</update>
|
|
</update>
|