All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mg.common.user.dao.SmsCodeDao Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package com.mg.common.user.dao;

        import com.mg.common.entity.SmsCodeEntity;
        import org.springframework.data.jpa.repository.JpaRepository;

        import java.util.List;

/**
 * Created by liukefu on 2017/6/24.
 */
public interface SmsCodeDao extends JpaRepository {

    List findByMobileAndSmsCodeOrderBySendTimeDesc(String mobile, String smsCode);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy