Blame view

src/com/fh/service/api/V1Manager.java 563 Bytes
bed6e1fc   孙向锦   添加其他功能
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  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   孙向锦   添加教师端页面
18
19
20
21
22
  	public List<PageData> getQuestionsByPID(PageData pd) throws Exception;
  	
  	public List<PageData> getTeacherInfo(PageData pd) throws Exception;
  	
  	
bed6e1fc   孙向锦   添加其他功能
23
  }