whyclxw
2025-01-11 51a7b8be2903a25825850e424fd997fff7d8c629
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.whyc.mapper;
 
 
import com.whyc.pojo.db_user.UserInf;
 
import java.util.List;
 
public interface FaceMapper<UserFace> extends CustomMapper<UserFace> {
 
 
    UserInf getInfo(int uId);
 
    List<UserInf> findAllFaceUrl();
}