import { Http,Util } from '@/utils'; import DstAPIServiceBase from './dst-api-service-base'; /** * 接口服务对象 * * @export * @class DstAPIService * @extends {DstAPIServiceBase} */ export default class DstAPIService extends DstAPIServiceBase { /** * Creates an instance of DstAPIService. * * @param {*} [opts={}] * @memberof DstAPIService */ constructor(opts: any = {}) { super(opts); } }