初始化
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package com.ifish.daoImpl;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.ifish.dao.PayBillDao;
|
||||
import com.ifish.entity.PayBill;
|
||||
import com.ifish.entity.id.PayBillId;
|
||||
import com.ifish.hibernate.HibernateBaseDao;
|
||||
|
||||
/**
|
||||
* @ClassName: PayBillDaoImpl
|
||||
* @Description: TODO
|
||||
* @author ggw
|
||||
*
|
||||
*/
|
||||
|
||||
@Repository("payBillDao")
|
||||
public class PayBillDaoImpl extends HibernateBaseDao<PayBill, PayBillId> implements PayBillDao {
|
||||
|
||||
@Override
|
||||
protected Class<PayBill> getEntityClass() {
|
||||
return PayBill.class;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user