26 lines
523 B
Java
26 lines
523 B
Java
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;
|
|
}
|
|
|
|
}
|