whyczh
2022-05-11 8a70c51674272a42c6acbbc3f967ecc101a2af96
1
2
3
4
5
6
7
8
9
package com.whyc.mapper;
 
import com.whyc.pojo.UserInf;
 
public interface UserMapper extends CustomMapper<UserInf> {
 
    UserInf getUserInfoByPhoneNumber(String phoneNumber);
 
}