📄 selectsomethingservice.java
字号:
package org.xk.service.interfaces;
import java.sql.SQLException;
import java.util.HashMap;
import java.util.List;
import org.xk.po.ClassUser;
public interface SelectSomethingService {
/**
* 根据教师姓名查询班级信息
*/
public List getClassInfo(int teacher_id)throws SQLException ;
public HashMap getTeacherInfo(int teacher_id)throws SQLException;
/**
* 获得年份信息
*/
public List getYearsInfo();
/**
* 获得学生信息
* @throws SQLException
*/
public List getStudentInfo(int class_id) throws SQLException;
public List getStudentInfo1(String stu_number) throws SQLException;
public List getSubjectInfo(int year_id,int class_id,int port_id) throws SQLException;
public HashMap getScoreInfo(String score_number,int year_id,int class_id,int port_id) throws SQLException;
public HashMap getStudentMessageInfo(int stu_id) throws SQLException;
public HashMap getClass(int class_id) throws SQLException;
public HashMap getPort(int port_id) throws SQLException;
public List getScore(String score_number,int year_id,int class_id,int port_id ) throws SQLException;
public List getPortInfo() throws SQLException;
public List getTeacherByDp(int port_id) throws SQLException;
public List getAdminInfo() throws SQLException;
public HashMap getAdmin(int admin_id) throws SQLException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -