liuxiaolong
2019-05-09 0d1d88cdb668e75ea8609417ac18ae19947e9525
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
                        http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
 
 
 
    <!-- 检查项分类 -->
    <bean id="selectCode.SUBJECTCATEGORY" parent="selectCodeDefinition">
        <property name="queryType" value="GetSubjectCategoryQuery" />
        <property name="keyFieldName" value="sccaId" />
        <property name="labelFieldName" value="sccaName" />
        <property name="queryFields">
        <list>
            <bean parent="queryField">
                <property name="fieldName" value="isValid" />
                <property name="operator" value="=" />
                <property name="fieldStringValue" value="Y" />
                <property name="fieldType" value="String" />
            </bean>
        </list>
        </property>
    </bean>
    
    <!-- 检查项分类 -->
    <bean id="selectCode.EMPHASISYEAR" parent="selectCodeDefinition">
        <property name="queryType" value="GetEmphasisYearQuery" />
        <property name="keyFieldName" value="emyear" />
        <property name="labelFieldName" value="emyear" />
        <property name="queryFields">
        <list>
            
        </list>
        </property>
    </bean>
    
    
 
    
</beans>