import HROrgContactAuthServiceBase from './hrorg-contact-auth-service-base'; /** * 组织联系信息权限服务对象 * * @export * @class HROrgContactAuthService * @extends {HROrgContactAuthServiceBase} */ export default class HROrgContactAuthService extends HROrgContactAuthServiceBase { /** * Creates an instance of HROrgContactAuthService. * * @param {*} [opts={}] * @memberof HROrgContactAuthService */ constructor(opts: any = {}) { super(opts); } }