📄 billingdetailsdao.java
字号:
package auction.dao;import auction.model.*;import java.util.*;/** * Business DAO operations related to the <tt>BillingDetails</tt> entity. * <p> * @see auction.model.BillingDetails * @see auction.model.CreditCard * @see auction.model.BankAccount * * @author Christian Bauer */public interface BillingDetailsDAO extends GenericDAO<BillingDetails, Long> { public List<BillingDetails> findConcrete(Class concreteClass);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -