pricingdao.java

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

JAVA
26
字号
package tarena.netctoss.dao;

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

public interface PricingDAO {
    public void insertPricing(Tpricing pricing) throws InfrastructureException;

    public void deletePricing(Tpricing pricing) throws InfrastructureException;

    public void deletePricing(Integer id) throws InfrastructureException;

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

    public void updatePricing(Tpricing pricing) throws InfrastructureException;

    public Collection selectAllPricings() throws InfrastructureException;

    public Tpricing selectPricingById(Integer id) throws
            InfrastructureException;

    public boolean selectPricingByBaseFeeAndRateFee(Double baseFee,
            Double reteFee) throws InfrastructureException;
}

⌨️ 快捷键说明

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