import { Http,Util } from '@/utils'; import UpdatePersonFileLogicBase from './update-person-file-logic-base'; /** * 更新档案信息 * * @export * @class UpdatePersonFileLogic */ export default class UpdatePersonFileLogic extends UpdatePersonFileLogicBase{ /** * Creates an instance of UpdatePersonFileLogic * * @param {*} [opts={}] * @memberof UpdatePersonFileLogic */ constructor(opts: any = {}) { super(opts); } }