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