📄 elecmeterinfodao.java
字号:
package imis_elec;
import java.util.ArrayList;
public interface ElecMeterInfoDAO {
public boolean insertElecMeterInfo(ElecMeterInfoTO elecMeterInfo) throws Exception;
public boolean updateElecMeterInfo(ElecMeterInfoTO elecMeterInfo) throws Exception;
/**
*
* @param ElecMeterRegNo 电表编号
* @return ElecMeterInfoTO 电表基本信息表的对象
* @throws Exception
*/
public ElecMeterInfoTO getElecMeterInfo(String ElecMeterRegNo) throws Exception;
/**
*
* @param ElecMeterRegNo 电表编号
* @return ElecMeterInfoTO 电表基本信息表的对象
* @throws Exception
*/
public boolean deleteElecMeterInfo(String ElecMeterRegNo) throws Exception;
public ArrayList searchElecMeterInfos(ElecMeterInfoTO elecMeterInfo) throws Exception;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -