import { Http,Util } from '@/utils'; import IBIZTASKServiceBase from './ibiztask-service-base'; /** * 任务服务对象 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service.ts.ftl 生成 * @export * @class IBIZTASKService * @extends {IBIZTASKServiceBase} */ export default class IBIZTASKService extends IBIZTASKServiceBase { /** * Creates an instance of IBIZTASKService. * * @param {*} [opts={}] * @memberof IBIZTASKService */ constructor(opts: any = {}) { super(opts); } }