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