zj
2025-05-02 01830e44921b187b448d8cce9c9a46b9ad55af43
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
<?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.5.xsd 
        ">
    <bean id="adminAllStatisticsService" class="project.web.admin.impl.report.AdminAllStatisticsServiceImpl">
        <property name="pagedQueryDao" ref="pagedDao" />
        <property name="namedParameterJdbcTemplate" ref="namedParameterJdbcTemplate" />
        <property name="userRecomService" ref="userRecomService" />
    </bean>
    
    <bean id="adminUserMoneyStatisticsService" class="project.web.admin.impl.report.AdminUserMoneyStatisticsServiceImpl">
        <property name="namedParameterJdbcTemplate" ref="namedParameterJdbcTemplate" />
        <property name="dataService" ref="dataService" />
        <property name="userRecomService" ref="userRecomService" />
    </bean>
 
    <bean id="adminUserAllStatisticsService" class="project.web.admin.impl.report.AdminUserAllStatisticsServiceImpl">
        <property name="pagedQueryDao" ref="pagedDao" />
        <property name="assetService" ref="assetService" />
        <property name="walletService" ref="walletService" />
        <property name="userRecomService" ref="userRecomService" />
    </bean>
 
    <bean id="adminAgentAllStatisticsService" class="project.web.admin.impl.report.AdminAgentAllStatisticsServiceImpl">
        <property name="pagedQueryDao" ref="pagedDao" />
        <property name="userRecomService" ref="userRecomService" />
        <property name="userDataService" ref="userDataService" />
        <property name="partyService" ref="partyService" />
    </bean>
</beans>