import { Http,Util } from '@/utils'; import HREducationServiceBase from './hreducation-service-base'; /** * 教育信息服务对象 * * @export * @class HREducationService * @extends {HREducationServiceBase} */ export default class HREducationService extends HREducationServiceBase { /** * Creates an instance of HREducationService. * * @param {*} [opts={}] * @memberof HREducationService */ constructor(opts: any = {}) { super(opts); } }