查询评价列表
GET
/api/system/evaluate/get_list/
请求参数
Query 参数
page
string
必需
示例值:
1
limit
string
必需
示例值:
1
user_id
string
必需
示例值:
1
Header 参数
User-Id
string
必需
示例值:
11
Body 参数application/json
object {0}
示例
{
"name": "1",
"file_url": "2",
"description": "1"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/system/evaluate/get_list/?page=1&limit=1&user_id=1' \
--header 'User-Id: 11' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "1",
"file_url": "2",
"description": "1"
}'
返回响应
🟢200成功
application/json
Body
code
integer
必需
msg
string
必需
page
integer
必需
limit
integer
必需
total
integer
必需
is_next
boolean
必需
is_previous
boolean
必需
data
array [object {11}]
必需
id
integer
可选
modifier_name
null
可选
create_datetime
string
可选
update_datetime
string
可选
nick_name
string
评价的用户昵称
is_visible
integer
可选
score
integer
评价分数
user_id
integer
可选
job
null
职位内容
by_user
integer
可选
job_user
null
职位发布用户id
示例
{
"code": 0,
"msg": "string",
"page": 0,
"limit": 0,
"total": 0,
"is_next": true,
"is_previous": true,
"data": [
{
"id": 0,
"modifier_name": null,
"create_datetime": "string",
"update_datetime": "string",
"nick_name": "string",
"is_visible": 0,
"score": 0,
"user_id": 0,
"job": null,
"by_user": 0,
"job_user": null
}
]
}
修改于 2024-12-08 03:56:36