update-person-file-logic.ts 474 字节
Newer Older
ibizdev's avatar
ibizdev committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
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);
    }

}