import IBIZSoftwareSuitAuthServiceBase from './ibizsoftware-suit-auth-service-base'; /** * 软件权限服务对象 * * @export * @class IBIZSoftwareSuitAuthService * @extends {IBIZSoftwareSuitAuthServiceBase} */ export default class IBIZSoftwareSuitAuthService extends IBIZSoftwareSuitAuthServiceBase { /** * Creates an instance of IBIZSoftwareSuitAuthService. * * @param {*} [opts={}] * @memberof IBIZSoftwareSuitAuthService */ constructor(opts: any = {}) { super(opts); } }