BaseController.java
1.34 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
package com.bjivt.base.controller;
import com.bjivt.service.showtime.*;
import org.springframework.beans.factory.annotation.Autowired;
public class BaseController {
/**
* @Title: BaseController.java
* @Package com.enla.base.controller
* @Description: 基础controller 注入需要service
* @author JASON
* @date 2015-12-2
*/
@Autowired
protected BlacklistService blacklistService;
@Autowired
protected ConfigService configService;
@Autowired
protected FeedbackService feedbackService;
@Autowired
protected FollowListService followListService;
@Autowired
protected GiftDetailService giftDetailService;
@Autowired
protected GiftListService giftListService;
@Autowired
protected LevelService levelService;
@Autowired
protected LikeDetailsService likeDetailsService;
@Autowired
protected LiveService liveService;
@Autowired
protected RedEnvelopDetailService redEnvelopDetailService;
@Autowired
protected RedEnvelopService redEnvelopService;
@Autowired
protected ReportService reportService;
@Autowired
protected UserService userService;
//2016.09.13 wpy
@Autowired
protected AnchorCheckedService anchorCheckedService;
@Autowired
protected UserGiftDetailService userGiftDetailService;
@Autowired
protected UserConversionLogService userConversionLogService;
@Autowired
protected UserRechargeLogService userRechargeLogService;
}