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