|
@@ -19,6 +19,7 @@
|
|
<result property="transferTime" column="transfer_time" />
|
|
<result property="transferTime" column="transfer_time" />
|
|
<result property="agentId" column="agent_id" />
|
|
<result property="agentId" column="agent_id" />
|
|
<result property="insurancePolicyFile" column="insurance_policy_file" />
|
|
<result property="insurancePolicyFile" column="insurance_policy_file" />
|
|
|
|
+ <result property="electronicInvoiceFile" column="electronic_invoice_file" />
|
|
<result property="no" column="no_" />
|
|
<result property="no" column="no_" />
|
|
<result property="effectiveDate" column="effective_date" />
|
|
<result property="effectiveDate" column="effective_date" />
|
|
<result property="delFlag" column="del_flag" />
|
|
<result property="delFlag" column="del_flag" />
|
|
@@ -48,7 +49,7 @@
|
|
(id_,definition_id,status_,process_status,insurance_fee,start_time,end_time,
|
|
(id_,definition_id,status_,process_status,insurance_fee,start_time,end_time,
|
|
number_,account_bank,issuing_bank,singl_number,transfer_time,
|
|
number_,account_bank,issuing_bank,singl_number,transfer_time,
|
|
agent_id,insurance_policy_file,no_,effective_date,del_flag,create_by,create_time,update_by,update_time,
|
|
agent_id,insurance_policy_file,no_,effective_date,del_flag,create_by,create_time,update_by,update_time,
|
|
- company_id,latest_application_id,policy_no,finish_time,commission_,commission_time,promoter_)
|
|
|
|
|
|
+ company_id,latest_application_id,policy_no,finish_time,commission_,commission_time,promoter_,electronic_invoice_file)
|
|
values
|
|
values
|
|
(
|
|
(
|
|
#{id,jdbcType=VARCHAR}
|
|
#{id,jdbcType=VARCHAR}
|
|
@@ -79,6 +80,7 @@
|
|
,#{commission,jdbcType= NUMERIC }
|
|
,#{commission,jdbcType= NUMERIC }
|
|
,#{commissionTime,jdbcType= TIMESTAMP }
|
|
,#{commissionTime,jdbcType= TIMESTAMP }
|
|
,#{promoter,jdbcType=VARCHAR}
|
|
,#{promoter,jdbcType=VARCHAR}
|
|
|
|
+ ,#{electronicInvoiceFile,jdbcType=VARCHAR}
|
|
)
|
|
)
|
|
]]>
|
|
]]>
|
|
</insert>
|
|
</insert>
|
|
@@ -169,6 +171,9 @@
|
|
<if test="promoter!=null">
|
|
<if test="promoter!=null">
|
|
promoter_=#{promoter,jdbcType= VARCHAR },
|
|
promoter_=#{promoter,jdbcType= VARCHAR },
|
|
</if>
|
|
</if>
|
|
|
|
+ <if test="electronicInvoiceFile!=null">
|
|
|
|
+ electronic_invoice_file=#{electronicInvoiceFile,jdbcType= VARCHAR },
|
|
|
|
+ </if>
|
|
</set>
|
|
</set>
|
|
where id_=#{id}
|
|
where id_=#{id}
|
|
</update>
|
|
</update>
|