package me.bello.eastline.service;
import me.bello.eastline.dao.NotifyDao;
import me.bello.eastline.dao.StockDao;
import javax.annotation.Resource;
public class BaseService {
@Resource
public NotifyDao notifyDao;
@Resource
public StockDao stockDao;
}