📄 guestorderdaofactory.java
字号:
/**
*
*/
package cn.bway.foreigntrade.order.guestorder.dao;
/**
* @author Kson
*
*/
public class GuestorderDAOFactory {
private static GuestorderDAOFactory me;
private GuestorderDAOFactory(){
}
/**
* ����DAOFactory����
* @return
*/
public static GuestorderDAOFactory getInstance(){
if(me==null)
me=new GuestorderDAOFactory();
return me;
}
/**
* @return ����WarnDAOHibernate
*/
public GuestorderDAO getGuestorderDAO() {
return new GuestorderDAOHibernate();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -