java110
2020-06-02 72378797a483b754122dfd368ce7cddec949e262
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.java110.comment.listener;
 
import com.java110.comment.dao.ICommentServiceDao;
import com.java110.core.event.service.AbstractBusinessServiceDataFlowListener;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
 
/**
 *
 * 商户 服务侦听 父类
 * Created by wuxw on 2018/7/4.
 */
public abstract class AbstractCommentBusinessServiceDataFlowListener extends AbstractBusinessServiceDataFlowListener{
 
    protected final static Logger logger = LoggerFactory.getLogger(AbstractCommentBusinessServiceDataFlowListener.class);
 
 
    /**
     * 获取 DAO工具类
     * @return
     */
    public abstract ICommentServiceDao getCommentServiceDaoImpl();
 
}