24 lines
505 B
Java
24 lines
505 B
Java
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<VenderList, String> implements VenderListDao {
|
|
|
|
@Override
|
|
protected Class<VenderList> getEntityClass() {
|
|
return VenderList.class;
|
|
}
|
|
}
|