b2e65b5638b618b04879dbdb886651379bdc212f.svn-base
3.7 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?xml version="1.0" encoding="UTF-8"?>
<!--
邮件service配置文件
-->
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
<!-- 发邮件service-->
<bean id="yxysendmailservice" class="com.espeed.yxy.service.impl.YxySendMailServiceImpl">
<!-- 待发邮件DAO -->
<property name="yxysendmailmasterdao">
<ref bean="yxysendmailmasterdao"/>
</property>
<property name="mailmasterbasedao">
<ref bean="mailmasterbasedao"/>
</property>
<!-- 待发邮件地址DAO -->
<property name="yxysendmaildetaildao">
<ref bean="yxysendmaildetaildao"/>
</property>
<!-- SMTP DAO -->
<property name="yxysendsmtpinfodao">
<ref bean="yxysendsmtpinfodao"/>
</property>
<!-- SMTP 后缀配置DAO -->
<property name="yxysmtpsuffixsetdao">
<ref bean="yxysmtpsuffixsetdao"/>
</property>
<!-- SMTP 后缀发送量DAO -->
<property name="yxysmtpsendsetdao">
<ref bean="yxysmtpsendsetdao"/>
</property>
<!-- 自配SMTP已发送量DAO -->
<property name="yxysmtpsendselfoversetdao">
<ref bean="yxysmtpsendselfoversetdao"/>
</property>
<!--自配SMTP发送量限制 DAO-->
<property name="yxysmtpsendselfsetdao">
<ref bean="yxysmtpsendselfsetdao"/>
</property>
<!--控制参数 DAO-->
<property name="yxysysparamaterdao">
<ref bean="yxysysparamaterdao"/>
</property>
<property name="yxysysparamatersvaluedao">
<ref bean="yxysysparamatersvaluedao"/>
</property>
<!-- 回复dao -->
<property name="replydao">
<ref bean="replydao"/>
</property>
<!-- 过滤dao -->
<property name="filterdao">
<ref bean="filterdao"/>
</property>
<!-- 跟踪配置dao -->
<property name="centretracksetdao">
<ref bean="centretracksetdao"/>
</property>
<!-- 营销开发客户配置dao -->
<property name="centreyxyedmnewcustomerdao">
<ref bean="centreyxyedmnewcustomerdao"/>
</property>
<!-- 营销盘活客户配置dao -->
<property name="centreyxyedmoldcustomerdao">
<ref bean="centreyxyedmoldcustomerdao"/>
</property>
<!-- 用户dao -->
<property name="centreuserdao">
<ref bean="centreuserdao"></ref>
</property>
</bean>
<!-- 营销计划service -->
<bean id="marketingplanservice" class="com.espeed.yxy.service.impl.YxyMarketingPlanServiceImpl">
<property name="marketingplandao">
<ref bean="marketingplandao"/>
</property>
<property name="marketingweekdao">
<ref bean="marketingweekdao"/>
</property>
<property name="addressdao">
<ref bean="addressdao"/>
</property>
<property name="stencildao">
<ref bean="stencildao"/>
</property>
<property name="senderdao">
<ref bean="senderdao"/>
</property>
<property name="yxysysparamaterdao">
<ref bean="yxysysparamaterdao"/>
</property>
<property name="yxysysparamatersvaluedao">
<ref bean="yxysysparamatersvaluedao"/>
</property>
<property name="yxycustomeremaildao">
<ref bean="yxycustomeremaildao"/>
</property>
<property name="centreyxyedmoldcustomerdao">
<ref bean="centreyxyedmoldcustomerdao"/>
</property>
<property name="centreuserdao">
<ref bean="centreuserdao"/>
</property>
<property name="crmcustomerinfodao">
<ref bean="crmcustomerinfodao"/>
</property>
<property name="yxysendcountdao">
<ref bean="yxysendcountdao"/>
</property>
</bean>
</beans>