- 教师自评
- 考核评议及结果排名
- 教师管理
- 教师考核细则管理
- 加扣分类别管理
- 成绩分录入
- 班级学生管理
- 课程品行分管理
- 学分驾驶舱
编辑
PUT
/score/student-score
成绩分录入
请求参数
Body 参数application/json
id
integer
主键id
deptId
integer
年级id
semester
string
必需
name
string
考试名称
<= 30 字符
fileUrl
string
上传附件
示例
{
"id": 0,
"deptId": 0,
"semester": "string",
"name": "string",
"fileUrl": "string"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request PUT '/score/student-score' \
--header 'Content-Type: application/json' \
--data-raw '{
"id": 0,
"deptId": 0,
"semester": "string",
"name": "string",
"fileUrl": "string"
}'
返回响应
🟢200successful operation
application/json
Body
code
number
可选
msg
string
可选
示例
{
"code": 0,
"msg": "string"
}