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.
42 lines
1.0 KiB
42 lines
1.0 KiB
3 years ago
|
/*
|
||
|
* Copyright (C), 2018-2021
|
||
|
* Project: starter
|
||
|
* FileName: OutputHttpDAO
|
||
|
* Author: Louis
|
||
|
* Date: 2021/4/14 15:38
|
||
|
*/
|
||
|
package com.fr.plugin.idfh.dao;
|
||
|
|
||
|
import com.fr.plugin.idfh.entity.OutputHttpEntity;
|
||
|
import com.fr.stable.db.dao.BaseDAO;
|
||
|
import com.fr.stable.db.dao.DAOProvider;
|
||
|
import com.fr.stable.db.session.DAOSession;
|
||
|
|
||
|
/**
|
||
|
* <Function Description><br>
|
||
|
* <OutputHttpDAO>
|
||
|
*
|
||
|
* @author fr.open
|
||
|
* @since 1.0.0
|
||
|
*/
|
||
|
public class OutputHttpDAO extends BaseDAO<OutputHttpEntity> {
|
||
|
public final static DAOProvider<OutputHttpEntity> DAO = new DAOProvider() {
|
||
|
@Override
|
||
|
public Class getEntityClass() {
|
||
|
return OutputHttpEntity.class;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public Class<? extends BaseDAO> getDAOClass() {
|
||
|
return OutputHttpDAO.class;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
public OutputHttpDAO(DAOSession daoSession) {
|
||
|
super(daoSession);
|
||
|
}
|
||
|
|
||
|
protected Class<OutputHttpEntity> getEntityClass() {
|
||
|
return OutputHttpEntity.class;
|
||
|
}
|
||
|
}
|