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