修改-学生详情
PUT
/students/{id}修改学生详情
请求参数
Path 参数
id
string
学生id
示例值:
241
Header 参数
Authorization
string
必需
token值 例如: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MiwiaWF0IjoxNjU2MjQ2MTE0LCJleHAiOjE2NTYyNTMzMTR9.SJZZaH9p_-q8tqDK0luC5vcmqUD0QnepMZCgdXpObIQ
示例值:
{{DataLook_ACCESS_TOKEN}}
Body 参数application/json
name
string
学生名字
age
integer
学生年龄
gender
integer
学生性别
0男, 1女
hope_salary
integer
学生期望薪资
salary
integer
学生就业薪资
group
integer
学生组号
1-8
province
string
学生省份名字
city
string
学生城市名字
area
string
学生区域名字
示例
{
"name": "黑马程序员",
"age": 16,
"gender": 0,
"hope_salary": 10000,
"salary": 9000,
"group": 1,
"province": "北京",
"city": "北京",
"area": "顺义区"
}
示例代码
返回响应
成功(200)
参数有误(400)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
message
string
响应消息
data
object
响应数据
id
integer
学生id
user_id
integer
学生所属用户id
name
string
学生名字
age
integer
学生年龄
gender
integer
学生性别
0男, 1女
hope_salary
integer
学生期望薪资
salary
integer
学生就业薪资
group
integer
学生组号
1-8
province
string
学生省份名字
city
string
学生城市名字
area
string
学生区域名字
createdAt
string
数据创建时间
updatedAt
string
数据更新时间
示例
成功示例
{
"message": "修改学生成功",
"data": {
"id": 241,
"user_id": 2,
"name": "黑马程序员",
"age": 16,
"gender": 0,
"hope_salary": 10000,
"salary": 9000,
"group": 1,
"province": "北京",
"city": "北京",
"area": "顺义区",
"createdAt": "2022-06-26T12:44:49.000Z",
"updatedAt": "2022-06-26T12:44:49.000Z"
}
}
最后修改时间: 2 年前