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