java面向对象高级分层实例_接口类

package bdqn.studentSys.Dao;

import java.util.List;

import bdqn.studentSys.entity.Student;

/**
 * 学生表的接口
 * @author Administrator
 *
 */
public interface StudentDao {
	//查询所有的学生
	public List<Student> getAllStudent();
	//修改学生信息
	public int UpdateStudent(Student stu);
	//添加学生信息
	public int addStudent(Student stu);
	//删除学生信息
	public int delStudent(int stuno);
}

原文地址:https://www.cnblogs.com/a1111/p/12816600.html