BaseController.java 1.34 KB
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;
}