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