Blame view

src/com/fh/service/api/V1Manager.java 716 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
19
20
  	public List<PageData> getQuestionsByPID(PageData pd) throws Exception;
  	
  	public List<PageData> getTeacherInfo(PageData pd) throws Exception;
  	
757dfed6   孙向锦   样例报表
21
22
  	public List<PageData> getQuestionWrongInfo(PageData pd) throws Exception ;
  	
bda221f4   孙向锦   0830版本
23
  	public List<PageData> getLastWrongQuestionInfo(PageData pd) throws Exception;
bed6e1fc   孙向锦   添加其他功能
24
  }