初始化
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user