import { Http,Util } from '@/utils'; import IBIZSupplierServiceBase from './ibizsupplier-service-base'; /** * 供货商服务对象 * * @export * @class IBIZSupplierService * @extends {IBIZSupplierServiceBase} */ export default class IBIZSupplierService extends IBIZSupplierServiceBase { /** * Creates an instance of IBIZSupplierService. * * @param {*} [opts={}] * @memberof IBIZSupplierService */ constructor(opts: any = {}) { super(opts); } }