ibizsample0018-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 IBIZSample0018UIServiceBase from './ibizsample0018-ui-service-base';

/**
 * 示例实体18UI服务对象
 *
 * @export
 * @class IBIZSample0018UIService
 */
export default class IBIZSample0018UIService extends IBIZSample0018UIServiceBase {

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

}