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

📄 pricingbiz.java

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

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

public interface PricingBIZ {
    public void addPricing(Tpricing pricing)throws
            InfrastructureException,RepeatBaseFeeAndRateFeeException;

    public void removePricing(Long[] pricingId)throws
            InfrastructureException;

    public Tpricing getPricingById(Long pricingId)throws
            InfrastructureException;

    public void modifyPricing(Tpricing pricing)throws
            InfrastructureException,RepeatBaseFeeAndRateFeeException;

    public Collection listAllPricing()throws
            InfrastructureException;


}

⌨️ 快捷键说明

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