JSD-7610 SAML单点
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
486 B

package com.fr.plugin.xxxx.saml.dao;
import com.fr.plugin.xxxx.saml.entity.RoleUrlEntity;
import com.fr.stable.db.dao.BaseDAO;
import com.fr.stable.db.session.DAOSession;
/**
* @Author fr.open
* @Date 2021/5/13
* @Description
**/
public class RoleUrlDao extends BaseDAO<RoleUrlEntity> {
public RoleUrlDao(DAOSession daoSession) {
super(daoSession);
}
@Override
protected Class<RoleUrlEntity> getEntityClass() {
return RoleUrlEntity.class;
}
}