You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

43 lines
1.1 KiB

/*
* Copyright (C), 2018-2021
* Project: starter
* FileName: ReportIndexInfoDao
* Author: xx
* Date: 2021/9/15 10:12
*/
package com.fr.plugin.isgd.dao;
import com.fr.plugin.isgd.entity.ReportIndexInfoEntity;
import com.fr.stable.db.dao.BaseDAO;
import com.fr.stable.db.dao.DAOProvider;
import com.fr.stable.db.session.DAOSession;
/**
* <Function Description><br>
* <ReportIndexInfoDao>
*
* @author xx
* @since 1.0.0
*/
public class ReportIndexInfoDao extends BaseDAO<ReportIndexInfoEntity> {
public final static DAOProvider<ReportIndexInfoEntity> DAO = new DAOProvider<ReportIndexInfoEntity>() {
@Override
public Class<ReportIndexInfoEntity> getEntityClass() {
return ReportIndexInfoEntity.class;
}
@Override
public Class<? extends BaseDAO<ReportIndexInfoEntity>> getDAOClass() {
return ReportIndexInfoDao.class;
}
};
public ReportIndexInfoDao(DAOSession daoSession) {
super(daoSession);
}
@Override
protected Class<ReportIndexInfoEntity> getEntityClass() {
return ReportIndexInfoEntity.class;
}
}