import { Http,Util } from '@/utils'; import ExecResultServiceBase from './exec-result-service-base'; /** * 执行结果服务对象 * * @export * @class ExecResultService * @extends {ExecResultServiceBase} */ export default class ExecResultService extends ExecResultServiceBase { /** * Creates an instance of ExecResultService. * * @param {*} [opts={}] * @memberof ExecResultService */ constructor(opts: any = {}) { super(opts); } }