import { Http,Util } from '@/utils'; import IBIZCustomerMGServiceBase from './ibizcustomer-mg-service-base'; /** * 客户管理服务对象 * * @export * @class IBIZCustomerMGService * @extends {IBIZCustomerMGServiceBase} */ export default class IBIZCustomerMGService extends IBIZCustomerMGServiceBase { /** * Creates an instance of IBIZCustomerMGService. * * @param {*} [opts={}] * @memberof IBIZCustomerMGService */ constructor(opts: any = {}) { super(opts); } }