import { Http,Util } from '@/utils';
import IBIZSampleServiceBase from './ibizsample-service-base';
/**
* 示例数据库服务对象
*
* @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);
}
}
-
由 ibizdev 提交于3f283ca5