30296eb78bf172324541b02cc38c973f5ab88c94.svn-base
16.3 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
<?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.service.impl.YxySendMailServiceImpl">
<!--用户设置-->
<property name="yxyusersetdao" ref="yxyusersetdao"></property>
<!--邮件基本信息dao-->
<property name="yxysendmailmasterbasedao" ref="yxysendmailmasterbasedao"></property>
<!--待发邮件dao-->
<property name="yxysendmailmasterdao" ref="yxysendmailmasterdao"></property>
<!--用户地址库dao-->
<property name="yxyuseraddressdao" ref="yxyuseraddressdao"></property>
<!--日统计dao-->
<property name="yxymaildaycountdao" ref="yxymaildaycountdao"></property>
<!--月统计dao-->
<property name="yxymailmonthcountdao" ref="yxymailmonthcountdao"></property>
<!--总统计dao-->
<property name="yxymailcountdao" ref="yxymailcountdao"></property>
<!--待发地址dao-->
<property name="yxysendmaildetaildao" ref="yxysendmaildetaildao"></property>
<!--营销多次邮件dao-->
<property name="mailmanydao" ref="mailmanydao"></property>
<!-- webmail路径dao -->
<property name="yxycompanywebinfodao" ref="yxycompanywebinfodao"></property>
<!-- 参数值DAO -->
<property name="yxysysparamatersvaluedao" ref="yxysysparamatersvaluedao"></property>
<!-- 邮箱DAO -->
<property name="yxysendsmtpinfodao" ref="yxysendsmtpinfodao"></property>
<!-- 营销邮发件人配置白名单dao -->
<property name="centreyxysenderdomaindao" ref="centreyxysenderdomaindao"></property>
<!-- 营销开发客户配置dao -->
<property name="centreyxyedmnewcustomerdao" ref="centreyxyedmnewcustomerdao"></property>
<!-- 营销盘活客户配置dao -->
<property name="centreyxyedmoldcustomerdao" ref="centreyxyedmoldcustomerdao"></property>
<!-- 跟进dao -->
<property name="crmcustomerfollowupdao" ref="crmcustomerfollowupdao"></property>
<!-- 客户dao -->
<property name="yxycustomeremaildao" ref="yxycustomeremaildao"></property>
<!-- CRM库发信月统计dao -->
<property name="yxyoldcustomercountsdao" ref="yxyoldcustomercountsdao"></property>
<!-- 新客户营销发信月统计dao -->
<property name="yxynewcustomercountsdao" ref="yxynewcustomercountsdao"></property>
<!-- 客户发送邮件的统计dao -->
<property name="yxysendcountdao" ref="yxysendcountdao"></property>
</bean>
<!-- 地址库service-->
<bean id="yxyaddressmanageservice" class="com.espeed.service.impl.YxyAddressManageServiceImpl">
<!-- 用户地址库DAO -->
<property name="yxyuseraddressdao" ref="yxyuseraddressdao"></property>
<!--退订DAO-->
<property name="yxyunsubscribeinfodao" ref="yxyunsubscribeinfodao"></property>
<!-- 文件类别DAO -->
<property name="yxymailfolderdao" ref="yxymailfolderdao"></property>
<!-- 点读DAO -->
<property name="yxyreadinginfodao" ref="yxyreadinginfodao"></property>
<!-- 回复DAO -->
<property name="yxyreplyinfodao" ref="yxyreplyinfodao"></property>
<!--邮件基本信息dao-->
<property name="yxysendmailmasterbasedao" ref="yxysendmailmasterbasedao"></property>
<!-- 客户dao -->
<property name="yxycustomeremaildao" ref="yxycustomeremaildao"></property>
</bean>
<!-- 邮件基本信息service-->
<bean id="yxysendmailmasterbaseservice" class="com.espeed.service.impl.YxySendMailMasterBaseServiceImpl">
<!-- 用户信息DAO -->
<property name="yxyuserinfodao" ref="yxyuserinfodao"></property>
<!-- 待发邮件DAO -->
<property name="yxysendmailmasterbasedao" ref="yxysendmailmasterbasedao"></property>
<!-- 待发地址DAO-->
<property name="yxysendmaildetaildao" ref="yxysendmaildetaildao"></property>
<!-- 企业控制参数dao -->
<property name="yxysysparamaterdao" ref="yxysysparamaterdao"/>
<!-- 日发量统计dao-->
<property name="yxymaildaycountdao" ref="yxymaildaycountdao"></property>
<!-- 月发量统计dao-->
<property name="yxymailmonthcountdao" ref="yxymailmonthcountdao"></property>
<!-- 总发量统计dao-->
<property name="yxymailcountdao" ref="yxymailcountdao"></property>
<!-- 点击信息 -->
<property name="yxyreadinginfodao" ref="yxyreadinginfodao"></property>
<!-- 点击总数据 -->
<property name="yxyreadingcountdao" ref="yxyreadingcountdao"></property>
<!-- 退订dao -->
<property name="yxyunsubscribeinfodao" ref="yxyunsubscribeinfodao"></property>
<!-- 回复DAO -->
<property name="yxyreplyinfodao" ref="yxyreplyinfodao"></property>
</bean>
<!-- 用户设置service-->
<bean id="yxyusersetservice" class="com.espeed.service.impl.YxyUserSetServiceImpl">
<!-- 邮件设置DAO -->
<property name="yxyusersetdao" ref="yxyusersetdao"></property>
<!-- 用户信息DAO -->
<property name="yxyuserinfodao" ref="yxyuserinfodao"></property>
</bean>
<!-- 用户信息service-->
<bean id="yxyuserinfoservice" class="com.espeed.service.impl.YxyUserInfoServiceImpl">
<!-- 邮件设置DAO -->
<property name="yxyuserinfodao" ref="yxyuserinfodao"></property>
<!-- 参数值DAO -->
<property name="yxysysparamatersvaluedao" ref="yxysysparamatersvaluedao"></property>
<!-- webmail路径dao -->
<property name="yxycompanywebinfodao" ref="yxycompanywebinfodao"></property>
<!-- 授权模块dao -->
<property name="xlicencefundao" ref="xlicencefundao"></property>
<!-- 登录dao -->
<property name="centrelogindao" ref="centrelogindao"></property>
<!-- 邮箱dao -->
<property name="xmailaccountdao" ref="xmailaccountdao"></property>
</bean>
<!-- 点击信息service-->
<bean id="yxyreadinginfoservice" class="com.espeed.service.impl.YxyReadingInfoServiceImpl">
<!-- 用户信息DAO -->
<property name="yxyuserinfodao" ref="yxyuserinfodao"></property>
<!-- 点读信息DAO -->
<property name="yxyreadinginfodao" ref="yxyreadinginfodao"></property>
<!--点读dao统计类-->
<property name="yxyreadingcountdao" ref="yxyreadingcountdao"></property>
<!--退订dao-->
<property name="yxyunsubscribeinfodao" ref="yxyunsubscribeinfodao"></property>
<!--邮件基本信息dao-->
<property name="yxysendmailmasterbasedao" ref="yxysendmailmasterbasedao"></property>
<!-- 待发邮件地址实体dao-->
<property name="yxysendmaildetaildao" ref="yxysendmaildetaildao"></property>
</bean>
<!-- 邮件统计service-->
<bean id="yxymailcountservice" class="com.espeed.service.impl.YxyMailCountServiceImpl">
<!-- 用户信息DAO -->
<property name="yxyuserinfodao" ref="yxyuserinfodao"></property>
<!-- 日发量统计dao-->
<property name="yxymaildaycountdao" ref="yxymaildaycountdao"></property>
<!-- 月发量统计dao-->
<property name="yxymailmonthcountdao" ref="yxymailmonthcountdao"></property>
<!-- 总发量统计dao-->
<property name="yxymailcountdao" ref="yxymailcountdao"></property>
<!-- 点读信息dao-->
<property name="yxyreadinginfodao" ref="yxyreadinginfodao"></property>
<!-- 点读统计dao-->
<property name="yxyreadingcountdao" ref="yxyreadingcountdao"></property>
<!--退订DAO-->
<property name="yxyunsubscribeinfodao" ref="yxyunsubscribeinfodao"/>
<!-- 邮件信息dao-->
<property name="yxysendmailmasterbasedao" ref="yxysendmailmasterbasedao"></property>
<!-- 用户地址dao-->
<property name="yxyuseraddressdao" ref="yxyuseraddressdao"></property>
<!-- 回复信息dao-->
<property name="yxyreplyinfodao" ref="yxyreplyinfodao"></property>
<!-- 统计dao-->
<property name="timecountdao" ref="timecountdao"></property>
</bean>
<!-- 控制参数service-->
<bean id="yxysysparamaterservice" class="com.espeed.service.impl.YxySysParamaterServiceImpl">
<!-- 参数DAO -->
<property name="yxysysparamaterdao" ref="yxysysparamaterdao"></property>
<!-- 参数值DAO -->
<property name="yxysysparamatersvaluedao" ref="yxysysparamatersvaluedao"></property>
</bean>
<!-- 退订service-->
<bean id="yxyunsubscribeinfoservice" class="com.espeed.service.impl.YxyUnsubscribeInfoServiceImpl">
<!-- 退订DAO -->
<property name="yxyunsubscribeinfodao" ref="yxyunsubscribeinfodao"></property>
</bean>
<!-- 文件类别service-->
<bean id="yxymailfolderservice" class="com.espeed.service.impl.YxyMailFolderServiceImpl">
<!-- 文件类别DAO -->
<property name="yxymailfolderdao" ref="yxymailfolderdao"></property>
<!-- 邮件DAO -->
<property name="yxysendmailmasterbasedao" ref="yxysendmailmasterbasedao"></property>
<!-- 地址DAO -->
<property name="yxyuseraddressdao" ref="yxyuseraddressdao"></property>
</bean>
<!-- 过滤分组service-->
<bean id="yxysendfilterservice" class="com.espeed.service.impl.YxySendFilterServiceImpl">
<!-- 过滤分组类别DAO -->
<property name="yxysendfilterdao" ref="yxysendfilterdao"></property>
<!-- 过滤分组地址DAO -->
<property name="yxysendfilteraddressdao" ref="yxysendfilteraddressdao"></property>
</bean>
<!-- 过滤分组地址service-->
<bean id="filteraddressservice" class="com.espeed.service.impl.YxySendFilterAddressServiceImpl">
<!-- 过滤分组地址DAO -->
<property name="yxysendfilteraddressdao" ref="yxysendfilteraddressdao"></property>
</bean>
<!-- SMTP service-->
<bean id="yxysendsmtpinfoservice" class="com.espeed.service.impl.YxySendSmtpInfoServiceImpl">
<!-- SMTP DAO -->
<property name="yxysendsmtpinfodao" ref="yxysendsmtpinfodao"></property>
<!-- SMTP List DAO -->
<property name="yxysmtplistdao" ref="yxysmtplistdao"></property>
</bean>
<!-- SMTPSuffix service-->
<bean id="yxysmtpsuffixsetservice" class="com.espeed.service.impl.YxySmtpSuffixSetServiceImpl">
<!-- suffix DAO -->
<property name="yxysmtpsuffixsetdao" ref="yxysmtpsuffixsetdao"></property>
</bean>
<!-- 自配SMTP设置 service-->
<bean id="yxysmtpsendselfsetservice" class="com.espeed.service.impl.YxySmtpSendSelfSetServiceImpl">
<!-- 自配SMTP设置 DAO -->
<property name="yxysmtpsendselfsetdao" ref="yxysmtpsendselfsetdao"></property>
</bean>
<!-- 回复信息 service-->
<bean id="yxyreplyinfoservice" class="com.espeed.service.impl.YxyReplyInfoServiceImpl">
<!-- 回复信息 DAO -->
<property name="yxyreplyinfodao" ref="yxyreplyinfodao"></property>
</bean>
<!-- 发件人配置service -->
<bean id="yxysendersetservice" class="com.espeed.service.impl.YxySendersetServiceImpl">
<!-- 发件人dao -->
<property name="yxysendersetdao" ref="yxysendersetdao"></property>
</bean>
<!-- 邮箱签名service -->
<bean id="yxyusersignatureservice" class="com.espeed.service.impl.YxyUserSignatureServiceImpl">
<property name="yxyusersingaturedao" ref="yxyusersingaturedao"></property>
</bean>
<!-- 内容重复service -->
<bean id="yxycontextsetservice" class="com.espeed.service.impl.YxyContextSetServiceImpl">
<property name="yxycontextsetdao" ref="yxycontextsetdao"></property>
</bean>
<!--过滤字符service -->
<bean id="yxysendsysfilterservice" class="com.espeed.service.impl.YxySendSysFilterServiceImpl">
<property name="yxysendsysfilterdao" ref="yxysendsysfilterdao"></property>
</bean>
<!--屏蔽的域名service -->
<bean id="shielddomainservice" class="com.espeed.service.impl.YxyShieldDomainServiceImpl">
<property name="shielddomaindao" ref="shielddomaindao"></property>
</bean>
<!--不屏蔽的邮件地址service -->
<bean id="noshieldemailservice" class="com.espeed.service.impl.YxyNoshieldEmailServiceImpl">
<property name="noshieldemaildao" ref="noshieldemaildao"></property>
</bean>
<!--模版service -->
<bean id="mailstencilservice" class="com.espeed.service.impl.YxyMailStencilServiceImpl">
<property name="mailstencildao" ref="mailstencildao"></property>
<property name="mailstenciltypedao" ref="mailstenciltypedao"></property>
<property name="yxymailstencilhtmldao" ref="yxymailstencilhtmldao"></property>
</bean>
<!--营销计划service -->
<bean id="marketingplanservice" class="com.espeed.service.impl.YxyMarketingPlanServiceImpl">
<property name="marketingplandao" ref="marketingplandao"></property>
<property name="marketingweekdao" ref="marketingweekdao"></property>
<property name="yxyuseraddressdao" ref="yxyuseraddressdao"></property>
<property name="yxymaildaycountdao" ref="yxymaildaycountdao"></property>
<property name="yxymailmonthcountdao" ref="yxymailmonthcountdao"></property>
<property name="yxymailcountdao" ref="yxymailcountdao"></property>
<property name="yxyoldcustomercountsdao" ref="yxyoldcustomercountsdao"></property>
<property name="yxycustomeremaildao" ref="yxycustomeremaildao"></property>
<property name="yxymailfolderdao" ref="yxymailfolderdao"></property>
<property name="customertypedao" ref="customertypedao"></property>
<property name="crmproductdao" ref="crmproductdao"></property>
<property name="crmsourcefromdao" ref="crmsourcefromdao"></property>
<property name="crmstatusdao" ref="crmstatusdao"></property>
<property name="mailstencildao" ref="mailstencildao"></property>
</bean>
<!--客户service -->
<bean id="customerservice" class="com.espeed.service.impl.YxyCustomerServiceImpl">
<!-- 客户分类dao -->
<property name="customertypedao" ref="customertypedao"></property>
<!-- 销售进程dao -->
<property name="crmprocessdao" ref="crmprocessdao"></property>
<!-- 意向产品dao -->
<property name="crmproductdao" ref="crmproductdao"></property>
<!-- 客户来源dao -->
<property name="crmsourcefromdao" ref="crmsourcefromdao"></property>
<!-- 客户状态dao -->
<property name="crmstatusdao" ref="crmstatusdao"></property>
<!-- 客户dao -->
<property name="yxycustomeremaildao" ref="yxycustomeremaildao"></property>
<!-- 参数值dao -->
<property name="sysparamatersvaluedao" ref="sysparamatersvaluedao"></property>
<!-- 采购偏好dao -->
<property name="crmcustomerindustriesdao" ref="crmcustomerindustriesdao"></property>
<!-- 阿里巴巴客户dao -->
<property name="crmcustomerinfodao" ref="crmcustomerinfodao"></property>
</bean>
<!--发送验证service -->
<bean id="sendverificationService" class="com.espeed.service.impl.MailSendVerificationServiceImpl">
<!-- 日统计DAO -->
<property name="yxymaildaycountdao" ref="yxymaildaycountdao"></property>
<!-- 月统计DAO -->
<property name="yxymailmonthcountdao" ref="yxymailmonthcountdao"></property>
<!-- 总统计DAO -->
<property name="yxymailcountdao" ref="yxymailcountdao"></property>
</bean>
<!--seo配置service -->
<bean id="yxyseosetservice" class="com.espeed.service.impl.YxySeoSetServiceImpl">
<property name="yxymailstencilkeyworddao" ref="yxymailstencilkeyworddao"></property>
<property name="yxymailstencilhtmldao" ref="yxymailstencilhtmldao"></property>
<property name="centreyxyedmseodao" ref="centreyxyedmseodao"></property>
<property name="centreyxyedmalibabadao" ref="centreyxyedmalibabadao"></property>
<property name="centreyxyedmcontactdao" ref="centreyxyedmcontactdao"></property>
<property name="centreusercontactdao" ref="centreusercontactdao"></property>
<property name="yxymailstencilheaderdao" ref="yxymailstencilheaderdao"></property>
<property name="centresnssetdao" ref="centresnssetdao"></property>
</bean>
<!-- 邮件数量统计相关service -->
<bean id="yxymailnumcountservice" class="com.espeed.service.impl.YxyMailNumCountServiceImpl">
<property name="yxymailnumcountdao" ref="yxymailnumcountdao"></property>
<property name="yxyreadinginfodao" ref="yxyreadinginfodao"></property>
<property name="yxyreplyinfodao" ref="yxyreplyinfodao"></property>
<property name="yxyunsubscribeinfodao" ref="yxyunsubscribeinfodao"></property>
<property name="yxylinkinfodao" ref="yxylinkinfodao"></property>
<property name="yxysendmailmasterbasedao" ref="yxysendmailmasterbasedao"></property>
</bean>
<!-- ip处理service -->
<bean id="yxymailipservice" class="com.espeed.service.impl.YxyMailIpServiceImpl">
<property name="yxyreadinginfodao" ref="yxyreadinginfodao"></property>
<property name="yxyunsubscribeinfodao" ref="yxyunsubscribeinfodao"></property>
<property name="yxyreplyinfodao" ref="yxyreplyinfodao"></property>
<property name="yxylinkinfodao" ref="yxylinkinfodao"></property>
</bean>
</beans>