AreaDaoImpl.java
434 字节
package com.myproject.dao.mongo.impl;
import com.myproject.bean.update.Area;
import com.myproject.dao.mongo.AbstractMongoDao;
import com.myproject.dao.mongo.IAreaDao;
import org.springframework.stereotype.Repository;
/**
* Created by kangmor on 2015/10/15.
*/
@Repository
public class AreaDaoImpl extends AbstractMongoDao implements IAreaDao {
@Override
public Class getEntityClass() {
return Area.class;
}
}