25 lines
493 B
Java
25 lines
493 B
Java
package com.ifish.daoImpl;
|
|
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
import com.ifish.dao.PushListDao;
|
|
import com.ifish.entity.PushList;
|
|
import com.ifish.hibernate.HibernateBaseDao;
|
|
|
|
/**
|
|
* @ClassName: PushListDaoImpl
|
|
* @Description: TODO
|
|
* @author ggw
|
|
*
|
|
*/
|
|
|
|
@Repository("pushListDao")
|
|
public class PushListDaoImpl extends HibernateBaseDao<PushList, Integer> implements PushListDao {
|
|
|
|
@Override
|
|
protected Class<PushList> getEntityClass() {
|
|
return PushList.class;
|
|
}
|
|
|
|
}
|