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

/**
 * 多版本流程UI服务对象
 * 基于 APP/src/uiservice/%DE_PKGPATH%/%DE_PKGPATH%-ui-service.ts.ftl 生成
 * @export
 * @class IBIZSample0004UIService
 */
export default class IBIZSample0004UIService extends IBIZSample0004UIServiceBase {

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

}