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

📄 pricingdao.java

📁 EJB+Hibernate+Spring 电信计费系统
💻 JAVA
字号:
package tarena.netctoss.dao;

import tarena.netctoss.model.Tpricing;
import tarena.netctoss.exception.InfrastructureException;
import java.util.Collection;

public interface PricingDAO {
    public void insertPricing(Tpricing pricing)throws InfrastructureException;
    public void deletePricing(Long pricingId)throws InfrastructureException;
    public void deletePricing(Tpricing pricing)throws InfrastructureException;
    public void deletePricings(Long[] pricingId)throws InfrastructureException;
    public void updatePricing(Tpricing pricing)throws InfrastructureException;
    public Tpricing selectPricingById(Long pricingId)throws InfrastructureException;
    public Collection selectAllPricing()throws InfrastructureException;
    public boolean selectPricingByBaseFeeAndRateFee(double baseFee, double rateFee)throws InfrastructureException;
}





⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -