package com.kmall.common.dao; import com.kmall.common.entity.SysSmsLogEntity; import org.springframework.stereotype.Component; /** * Dao * * @author Scott * @date 2017-12-16 23:38:05 */ @Component public interface SysSmsLogDao extends BaseDao { SysSmsLogEntity querySmsCodeByUserId(Long userId); }