📄 buybilldaohibernateimpl.java
字号:
package com.jsfabc.jsh.model.dao.hibernateImpl;
import java.util.Collection;
import org.springframework.dao.DataAccessException;
import org.springframework.orm.hibernate3.support.HibernateDaoSupport;
import com.jsfabc.jsh.model.dao.BuyBillDao;
public class BuyBillDaoHibernateImpl extends HibernateDaoSupport implements BuyBillDao {
public void saveBuyBills(final Collection buyBills) throws DataAccessException {
getHibernateTemplate().saveOrUpdateAll(buyBills);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -