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