📄 dbmanagerdao.java
字号:
package com.middle.graduate.biz.dao;
import java.util.List;
import com.middle.graduate.biz.entity.Student;
import com.middle.graduate.biz.entity.Teacher;
import com.middle.graduate.biz.exce.DataException;
public interface DBManagerDao {
public boolean login(int managerId, String password) throws DataException;
public void changePassword(int managerId, String password) throws DataException;
public void insert(Teacher teacher) throws DataException;
public void insert(Student student) throws DataException;
public List<Teacher> queryAllTeacher() throws DataException;
public List<Student> queryAllStudent() throws DataException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -