<?xml version="1.0" encoding="UTF-8"?>
<bm:model xmlns:bm="http://www.leaf-framework.org/schema/bm" needAccessControl="false">
    <bm:operations>
        <bm:operation name="execute">
            <bm:parameters>
                <bm:parameter name="contract_id" input="true" output="false"/>
                <bm:parameter name="ccr_start_times" input="true" output="false"/>
                <bm:parameter name="btb_payment_date" input="true" output="false"/>
            </bm:parameters>
            <bm:update-sql><![CDATA[
                begin
                con_contract_change_req_pkg.update_change_req
                (
                p_contract_id=>${@contract_id},
                p_ccr_start_times=>${@ccr_start_times},
                p_btb_payment_date=>to_date(${@btb_payment_date},'yyyy-mm-dd')
                );
                end;]]></bm:update-sql>
        </bm:operation>
    </bm:operations>
</bm:model>