?? pricingdao.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 + -