📄 elecuseinfodao.java
字号:
package imis_elec;
import java.util.ArrayList;
public interface ElecUseInfoDAO {
public boolean insertElecUseInfo(ElecUseInfoTO elecUseInfo) throws Exception;
public boolean updateElecUseInfo(ElecUseInfoTO elecUseInfo) throws Exception;
/**
*
* @param ElecMeterRegNo 电表编号
* @return ElecUseInfoTO 电表基本信息表的对象
* @throws Exception
*/
public ElecUseInfoTO getElecUseInfo(String elecMeterRegNo, boolean modifyOrDelete) throws Exception;
/**
*
* @param ElecMeterRegNo 电表编号
* @return ElecUseInfoTO 电表基本信息表的对象
* @throws Exception
*/
public boolean deleteElecUseInfo(int useId) throws Exception;
public ArrayList searchElecUseInfos(ElecUseInfoTO elecUseInfo, String endDate) throws Exception;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -