bed6e1fc
孙向锦
添加其他功能
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package com.fh.service.api;
import java.util.List;
import com.fh.util.PageData;
public interface V1Manager {
public List<PageData> getTeacherClassInfo(PageData pd) throws Exception;
public List<PageData> getTeacherSubjectInfo(PageData pd) throws Exception;
public List<PageData> getClassStudent(PageData pd) throws Exception;
public List<PageData> getTestPaperInfo(PageData pd) throws Exception;
}
|