ibizsample0017-service.ts 587 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
import { Http,Util } from '@/utils';
import IBIZSample0017ServiceBase from './ibizsample0017-service-base';


/**
 * 订单服务对象
 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service.ts.ftl 生成
 * @export
 * @class IBIZSample0017Service
 * @extends {IBIZSample0017ServiceBase}
 */
export default class IBIZSample0017Service extends IBIZSample0017ServiceBase {

    /**
     * Creates an instance of  IBIZSample0017Service.
     * 
     * @param {*} [opts={}]
     * @memberof  IBIZSample0017Service
     */
    constructor(opts: any = {}) {
        super(opts);
    }


}