studentdao.java

来自「java 框架核心技术编程」· Java 代码 · 共 21 行

JAVA
21
字号
package org.lxh.dao;

import java.util.List;

import org.lxh.vo.Student;

public interface StudentDAO {
	public void insert(Student student) throws Exception;

	public void update(Student student) throws Exception;

	public void delete(int sid) throws Exception;

	public List queryAll() throws Exception;

	public Student queryBySId(int sid) throws Exception;

	public List queryByLike(String cond) throws Exception;

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?