package com.gkhy.exam.coalmine.service.baseService;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.gkhy.exam.coalmine.entity.TeacherManage;
|
|
/**
|
* @author hz
|
* @since 2023-09-11 14:47:33
|
*/
|
public interface TeacherManageService extends IService<TeacherManage> {
|
|
TeacherManage getTeacherByCode(String code);
|
|
TeacherManage getTeacherById(Long id);
|
}
|