server_layout_switchcard_value.lwm 764 Bytes
Newer Older
Spencer Chang's avatar
Spencer Chang committed
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: gaoyang 
    $Date: 2014-9-12 下午02:52:13  
    $Revision: 1.0  
    $Purpose: 
-->
<bm:model xmlns:bm="http://www.leaf-framework.org/schema/bm">
    <bm:operations>
        <bm:operation name="query">
            <bm:query-sql><![CDATA[
                SELECT
                    t.switchcard_value
                FROM
                    hls_doc_layout_tab t
                WHERE
                    t.layout_code     = ${@layout_code} AND
                    t.parent_tab_code = ${@parent_tab_code} AND
                    t.enabled_flag    = 'Y'
                GROUP BY
                    t.switchcard_value
            ]]></bm:query-sql>
        </bm:operation>
    </bm:operations>
</bm:model>