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 implements PushListDao { @Override protected Class getEntityClass() { return PushList.class; } }