<?xml version="1.0"?>
|
<!DOCTYPE hibernate-mapping PUBLIC
|
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
|
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
|
|
<hibernate-mapping>
|
<sql-query name="C_R_GetSchoolCheckNumQuery">
|
<![CDATA[
|
|
select count(*) checkNum from sc_check_org
|
|
where 1=1
|
and scco_org_id in (:orgIds)
|
|
<<and scco_begin_date>=:beginDate>>
|
<<and scco_begin_date<=:endDate>>
|
|
]]>
|
</sql-query>
|
</hibernate-mapping>
|