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