import MetaRelationshipAuthServiceBase from './meta-relationship-auth-service-base'; /** * 实体关系权限服务对象 * * @export * @class MetaRelationshipAuthService * @extends {MetaRelationshipAuthServiceBase} */ export default class MetaRelationshipAuthService extends MetaRelationshipAuthServiceBase { /** * Creates an instance of MetaRelationshipAuthService. * * @param {*} [opts={}] * @memberof MetaRelationshipAuthService */ constructor(opts: any = {}) { super(opts); } }