📄 testdao.java
字号:
package com.gc.dao;
import java.sql.SQLException;
import java.util.List;
import com.gc.vo.Test;
public interface TestDAO {
public abstract int createTest(Test user) throws Exception;
public abstract int updateTest(Test user) throws SQLException;
public abstract int deleteTest(Test user) throws SQLException;
public abstract List queryTest(String name) throws SQLException;
public abstract int createListTest(List list) throws SQLException;
public abstract int[] createBatchListTest(List list) throws SQLException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -