package com.fh.service.api; import java.util.List; import com.fh.util.PageData; public interface V1Manager { public List getTeacherClassInfo(PageData pd) throws Exception; public List getTeacherSubjectInfo(PageData pd) throws Exception; public List getClassStudent(PageData pd) throws Exception; public List getTestPaperInfo(PageData pd) throws Exception; public List getQuestionsByPID(PageData pd) throws Exception; public List getTeacherInfo(PageData pd) throws Exception; public List getQuestionWrongInfo(PageData pd) throws Exception ; public List getLastWrongQuestionInfo(PageData pd) throws Exception; public List getAdminInfo(PageData pd) throws Exception; public List getClassBySchoolAndGradle(PageData pd) throws Exception; public List classReport(PageData pd) throws Exception; }