bp_role_check.lwm 1.03 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
<?xml version="1.0" encoding="UTF-8"?>
<!--
    $Author: wangwei  
    $Date: 2014-12-19 下午7:07:43  
    $Revision: 1.0  
    $Purpose: 
-->
<bm:model xmlns:bm="http://www.leaf-framework.org/schema/bm">
    <bm:operations>
        <bm:operation name="update">
            <!--<bm:parameters>
                <bm:parameter name="cdd_list_id" dataType="java.lang.Long" input="true" output="true" outputPath="@cdd_list_id"/>
            </bm:parameters>-->
            <bm:update-sql><![CDATA[
                BEGIN
                    hls_bp_master_change_req_pkg.check_bp_master_role(p_bp_id           => ${@bp_id},
                                                                      p_bp_role_id      => ${@bp_role_id},
                                                                      p_bp_type         => ${@bp_type},
                                                                      p_user_id         => ${/session/@user_id});

                END;
                ]]></bm:update-sql>
        </bm:operation>
    </bm:operations>
</bm:model>