update-contact-logic.ts 455 字节
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 UpdateContactLogicBase from './update-contact-logic-base';

/**
 * 更新紧急联络人
 *
 * @export
 * @class UpdateContactLogic
 */
export default class UpdateContactLogic extends UpdateContactLogicBase{

    /**
     * Creates an instance of  UpdateContactLogic
     * 
     * @param {*} [opts={}]
     * @memberof  UpdateContactLogic
     */
    constructor(opts: any = {}) {
        super(opts);
    }

}