package com.ifish.daoImpl; import org.springframework.stereotype.Repository; import com.ifish.dao.VenderListDao; import com.ifish.entity.VenderList; import com.ifish.hibernate.HibernateBaseDao; /** * @ClassName: VenderDaoImpl * @Description: TODO * @author ggw * */ @Repository("venderListDao") public class VenderListDaoImpl extends HibernateBaseDao implements VenderListDao { @Override protected Class getEntityClass() { return VenderList.class; } }