import IBIZCPUAuthServiceBase from './ibizcpu-auth-service-base'; /** * 处理器权限服务对象 * * @export * @class IBIZCPUAuthService * @extends {IBIZCPUAuthServiceBase} */ export default class IBIZCPUAuthService extends IBIZCPUAuthServiceBase { /** * Creates an instance of IBIZCPUAuthService. * * @param {*} [opts={}] * @memberof IBIZCPUAuthService */ constructor(opts: any = {}) { super(opts); } }