📄 elecinfodao.java
字号:
package imis_elec;
import java.util.ArrayList;
public interface ElecInfoDAO {
public boolean insertElecInfo(ElecInfoTO elecInfo) throws Exception;
public boolean updateElecInfo(ElecInfoTO elecInfo) throws Exception;
public ElecInfoTO getElecInfo(String userId) throws Exception;
public boolean deleteElecInfo(String userId) throws Exception;
public ArrayList searchElecInfos(ElecInfoTO elecInfo) throws Exception;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -