API Usage Examples - POST /api/phoneFollow/save
当手机号不存在时,创建一条新的应聘者记录。
http://localhost:5000/api/phoneFollow/save{
"Content-Type": "application/json"
}{
"phone": "13800138000",
"name": "张三",
"wechat": "wechat_zhangsan",
"age": 28,
"education": "本科",
"position": "软件工程师"
}当手机号已存在时,更新该应聘者的信息。
http://localhost:5000/api/phoneFollow/save{
"Content-Type": "application/json"
}{
"phone": "13800138000",
"name": "张三",
"wechat": "wechat_zhangsan_new",
"age": 29,
"education": "硕士",
"position": "高级软件工程师"
}curl -X POST http://localhost:5000/api/phoneFollow/save \
-H 'Content-Type: application/json' \
-d '{"phone":"13900139000","name":"李四","wechat":"wechat_lisi","age":26,"education":"本科","position":"产品经理"}'curl -X POST http://localhost:5000/api/phoneFollow/save \
-H 'Content-Type: application/json' \
-d '{"phone":"13900139000","name":"李四","wechat":"wechat_lisi_new","age":27,"education":"硕士","position":"高级产品经理"}'人事招聘管理系统 API 示例 | Phone Follow API Examples
Base URL: http://localhost:5000