教育训练处考试制证系统后端
“djh”
2025-02-25 70dcf4e610a0ec5fd6ca2c3daf9edf4957b30529
1
2
3
4
5
6
7
8
9
10
11
12
package com.gkhy.exam.institutionalaccess.service;
 
import com.gkhy.exam.institutionalaccess.entity.ThStudent;
import com.gkhy.exam.institutionalaccess.model.query.ThStudentQuery;
 
import java.util.List;
 
public interface ThStudentManagerService {
    List<ThStudent> listByPage(ThStudentQuery query);
 
    ThStudent findByIdCard(String idcard);
}