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

/**
 * 部门UI服务对象
 *
 * @export
 * @class IBIZSample0019UIService
 */
export default class IBIZSample0019UIService extends IBIZSample0019UIServiceBase {

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

}