Blame view

src/com/fh/service/api/V1Manager.java 999 Bytes
bed6e1fc   孙向锦   添加其他功能
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  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;
  	
338594c8   孙向锦   添加教师端页面
17
18
  	public List<PageData> getQuestionsByPID(PageData pd) throws Exception;
  	
8246d00c   孙向锦   修复bug
19
20
21
  	public List<PageData> getTeacherInfoGrade(PageData pd) throws Exception;
  	
  	public PageData getTeacherInfo(PageData pd) throws Exception;
338594c8   孙向锦   添加教师端页面
22
  	
757dfed6   孙向锦   样例报表
23
24
  	public List<PageData> getQuestionWrongInfo(PageData pd) throws Exception ;
  	
bda221f4   孙向锦   0830版本
25
  	public List<PageData> getLastWrongQuestionInfo(PageData pd) throws Exception;
6b3a5ad0   孙向锦   添加管理员界面
26
  	
837ae11d   孙向锦   添加班長管理
27
  	public PageData getAdminInfo(PageData pd) throws Exception;
6b3a5ad0   孙向锦   添加管理员界面
28
29
  	
  	public List<PageData> getClassBySchoolAndGradle(PageData pd) throws Exception;
3a163205   孙向锦   报表优化
30
31
  	
  	public List<PageData> classReport(PageData pd)	throws Exception;
bed6e1fc   孙向锦   添加其他功能
32
  }