import IBZEmployeeUIServiceBase from './ibzemployee-ui-service-base'; /** * 人员UI服务对象 * * @export * @class IBZEmployeeUIService */ export default class IBZEmployeeUIService extends IBZEmployeeUIServiceBase { /** * Creates an instance of IBZEmployeeUIService. * * @param {*} [opts={}] * @memberof IBZEmployeeUIService */ constructor(opts: any = {}) { super(opts); } }