|
|
@@ -1,5 +1,7 @@
|
|
|
package com.uas.platform.b2b.dao;
|
|
|
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
import org.springframework.data.jpa.repository.JpaRepository;
|
|
|
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
|
|
|
import org.springframework.stereotype.Repository;
|
|
|
@@ -16,4 +18,12 @@ public interface UserBaseInfoDao extends JpaSpecificationExecutor<UserBaseInfo>,
|
|
|
* @return
|
|
|
*/
|
|
|
public UserBaseInfo findByUserUU(Long userUU);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 通过电话号码查询用户信息
|
|
|
+ *
|
|
|
+ * @param userTel
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public List<UserBaseInfo> findByUserTel(String userTel);
|
|
|
}
|