- 教师自评
- 考核评议及结果排名
- 教师管理
- 教师考核细则管理
- 加扣分类别管理
- 成绩分录入
- 班级学生管理
- 课程品行分管理
- 学分驾驶舱
编辑
PUT
/assessment/teacher-self
教师自评
请求参数
Body 参数application/json
id
integer
主键id
assessmentId
integer
考核id
registrationForm
array[string]
年度考核登记表
selfAssessment
array [object {3}]
自评打分
typeId
string
分类id
addScore
array [object {4}]
加分情况
subtractScore
array [object {4}]
扣分情况
removeIds
array[integer]
自评记录id
示例
{
"id": 0,
"assessmentId": 0,
"registrationForm": [
"string"
],
"selfAssessment": [
{
"typeId": "string",
"addScore": [
{
"id": 0,
"ruleId": 0,
"info": "string",
"fileUrls": [
"string"
]
}
],
"subtractScore": [
{
"id": 0,
"ruleId": 0,
"info": "string",
"frequency": "string"
}
]
}
],
"removeIds": [
0
]
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request PUT '/assessment/teacher-self' \
--header 'Content-Type: application/json' \
--data-raw '{
"id": 0,
"assessmentId": 0,
"registrationForm": [
"string"
],
"selfAssessment": [
{
"typeId": "string",
"addScore": [
{
"id": 0,
"ruleId": 0,
"info": "string",
"fileUrls": [
"string"
]
}
],
"subtractScore": [
{
"id": 0,
"ruleId": 0,
"info": "string",
"frequency": "string"
}
]
}
],
"removeIds": [
0
]
}'
返回响应
🟢200successful operation
application/json
Body
code
number
可选
msg
string
可选
示例
{
"code": 0,
"msg": "string"
}