import { http } from '../request/request'; /** * 获取督学师课表时间 * @param data 请求参数 */ export const getCourseTable = async (data = {}): Promise => { return await http.get('/phone/inspectorTeacher/getCourseTableById', data); }; /** * 查询学生列表 * @param params */ export const queryStudentList = async (params = {}): Promise => { return await http.get('/phone/inspectorTeacher/getMyStudent', params); };