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; }