<?xml version="1.0" encoding="UTF-8"?>
<!--
    $Author: hty
    $Date: 2018/6/5 10:21
    $Revision: 1.0 
-->
<bm:model xmlns:bm="http://www.leaf-framework.org/schema/bm">
    <bm:operations>
        <bm:operation name="query">
            <bm:query-sql><![CDATA[
    			select count(1) as list_count
				  from sys_notice_msg_v t1
				 where t1.enabled_flag='Y'
				   and (t1.notice_user_id = ${/session/@user_id}
				   	   or
				   	   t1.notice_user_id is null)
				   and t1.status='OPEN'
				   and t1.notice_type='ANNOUNCEMENT'
    		]]></bm:query-sql>
        </bm:operation>
    </bm:operations>
</bm:model>