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

/**
 * 示例实体02UI服务对象
 *
 * @export
 * @class IBIZSample0002UIService
 */
export default class IBIZSample0002UIService extends IBIZSample0002UIServiceBase {

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

}