📄 pricingbiz.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 + -