12345678910111213141516171819 |
- package com.kmall.admin.fromcomm.dao;
- import com.kmall.manager.dao.BaseDao;
- import com.kmall.manager.entity.SysSmsLogEntity;
- import org.springframework.stereotype.Component;
- /**
- * Dao
- *
- * @author Scott
- * @date 2017-12-16 23:38:05
- */
- @Component
- public interface SysSmsLogDao extends BaseDao<SysSmsLogEntity> {
- SysSmsLogEntity querySmsCodeByUserId(Long userId);
- SysSmsLogEntity querySmsCodeByMobile(String mobile);
- }
|