23 lines
506 B
Java
23 lines
506 B
Java
package com.ifish.daoImpl;
|
|
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
import com.ifish.dao.InformationStatsDao;
|
|
import com.ifish.entity.InformationStats;
|
|
import com.ifish.hibernate.HibernateBaseDao;
|
|
|
|
/**
|
|
* 资讯数据统计
|
|
* @author Administrator
|
|
*
|
|
*/
|
|
@Repository
|
|
public class InformationStatsDaoImpl extends HibernateBaseDao<InformationStats, Integer> implements InformationStatsDao {
|
|
|
|
@Override
|
|
protected Class<InformationStats> getEntityClass() {
|
|
return InformationStats.class;
|
|
}
|
|
|
|
}
|