⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 elecuseinfodao.java

📁 JSP移动商品管理平台源代码.........
💻 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 + -