?? 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 + -