def show_teacher(tip): """ 查看老师 :param tip: 提示信息 :return: True """ return commons.show_model(models.Teacher.db_path, tip)
def show_school(tip): """ 查看学校 :param tip: 提示信息 :return: True """ return commons.show_model(models.School.db_path, tip)
def show_course_teacher(tip): """ 查看课程对应老师 :param tip: 提示信息 :return: True """ return commons.show_model(models.CourseToTeacher.db_path, tip)
def show_classes(tip): """ 查看班级 :param tip: 提示信息 :return: True """ return commons.show_model(models.Classes.db_path, tip)
def show_course(tip): """ 显示课程 :param tip: 提示信息 :return: True """ # return return commons.show_model(models.Course.db_path, tip)