JSD-8486 开源任务材料
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.

21 lines
458 B

package com.fr.plugin.idm.sso.dao;
import com.fr.plugin.idm.sso.entity.OrgEntity;
import com.fr.stable.db.dao.BaseDAO;
import com.fr.stable.db.session.DAOSession;
/**
* @Author fr.open
* @Date 2020/8/19
* @Description
**/
public class OrgDao extends BaseDAO<OrgEntity> {
public OrgDao(DAOSession daoSession) {
super(daoSession);
}
@Override
protected Class<OrgEntity> getEntityClass() {
return OrgEntity.class;
}
}