ibizsample0017-ui-service.ts 530 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
import IBIZSample0017UIServiceBase from './ibizsample0017-ui-service-base';

/**
 * 订单UI服务对象
 * 基于 APP/src/uiservice/%DE_PKGPATH%/%DE_PKGPATH%-ui-service.ts.ftl 生成
 * @export
 * @class IBIZSample0017UIService
 */
export default class IBIZSample0017UIService extends IBIZSample0017UIServiceBase {

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

}