GET message/get_message_list?page_index={page_index}&page_size={page_size}
获取我的留言消息
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| page_index | integer |
Required |
|
| page_size | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
获取我的留言消息
DataResponseOfPageResponseOfMessageListViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| code | integer |
None. |
|
| message | string |
None. |
|
| success | boolean |
None. |
|
| data | PageResponseOfMessageListViewModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"code": 1,
"message": "sample string 2",
"success": true,
"data": {
"last_page": true,
"total_count": 2,
"list": [
{
"comment_id": 1,
"user_id": 2,
"user_name": "sample string 3",
"head_image_path": "sample string 4",
"course_id": 5,
"comment": "sample string 6",
"date_created_str": "2025-11-07 05:17"
},
{
"comment_id": 1,
"user_id": 2,
"user_name": "sample string 3",
"head_image_path": "sample string 4",
"course_id": 5,
"comment": "sample string 6",
"date_created_str": "2025-11-07 05:17"
}
]
}
}