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