SysSmsLogDao.java 327 B

12345678910111213141516
  1. package com.kmall.common.dao;
  2. import com.kmall.common.entity.SysSmsLogEntity;
  3. import org.springframework.stereotype.Component;
  4. /**
  5. * Dao
  6. *
  7. * @author Scott
  8. * @date 2017-12-16 23:38:05
  9. */
  10. @Component
  11. public interface SysSmsLogDao extends BaseDao<SysSmsLogEntity> {
  12. SysSmsLogEntity querySmsCodeByUserId(Long userId);
  13. }