import { Http,Util } from '@/utils'; import IBIZOrderServiceBase from './ibizorder-service-base'; /** * 订单服务对象 * * @export * @class IBIZOrderService * @extends {IBIZOrderServiceBase} */ export default class IBIZOrderService extends IBIZOrderServiceBase { /** * Creates an instance of IBIZOrderService. * * @param {*} [opts={}] * @memberof IBIZOrderService */ constructor(opts: any = {}) { super(opts); } }