pricingbiz.java

来自「电信系统」· Java 代码 · 共 27 行

JAVA
27
字号
package tarena.netctoss.biz;

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

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

    public void removePricing(Tpricing pricing) throws InfrastructureException;

    public void removePricing(Integer id) throws InfrastructureException;

    public void removePricings(Integer[] ids) throws InfrastructureException;

    public void modifyPricing(Tpricing pricing) throws InfrastructureException;

    public Collection findAllPricings() throws InfrastructureException;

    public Tpricing findPricingById(Integer id) throws InfrastructureException;

    public boolean exsitPricingByBaseFeeAndRateFee(Double baseFee,
            Double rateFee) throws InfrastructureException;
}

⌨️ 快捷键说明

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