123456789101112131415161718 |
- package com.kmall.common.dao;
- import com.kmall.common.entity.TemplateConfVo;
- import org.springframework.stereotype.Component;
- /**
- * 微信模板消息日志Dao
- *
- * @author Scott
- * @email
- * @date 2017-12-02 16:49:29
- */
- @Component
- public interface TemplateConfDao extends BaseDao<TemplateConfVo> {
- TemplateConfVo queryByTypeId(Integer templateType);
- }
|