import IBIZCustomerAuthServiceBase from './ibizcustomer-auth-service-base'; /** * 客户权限服务对象 * * @export * @class IBIZCustomerAuthService * @extends {IBIZCustomerAuthServiceBase} */ export default class IBIZCustomerAuthService extends IBIZCustomerAuthServiceBase { /** * Creates an instance of IBIZCustomerAuthService. * * @param {*} [opts={}] * @memberof IBIZCustomerAuthService */ constructor(opts: any = {}) { super(opts); } }