POST api/Moment/GetMomentReportList
获取举报的列表
Request Information
URI Parameters
None.
Body Parameters
MomentReportSearchRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PageIndex |
页码 |
integer |
None. |
| PageSize |
每页多少条 |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"pageIndex": 1,
"pageSize": 2
}
Response Information
Resource Description
获取举报的列表
PageListResponseOfMomentReportDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Page | PageInfo |
None. |
|
| List | Collection of MomentReportDto |
None. |
|
| Other | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"page": {
"pageIndex": 1,
"pageSize": 2,
"totalCount": 3
},
"list": [
{
"id": 1,
"customerCode": "sample string 2",
"customerName": "sample string 3",
"createdOn": "2025-12-06T02:58:28.7149951+08:00",
"momentId": "sample string 5",
"momentCustomerCode": "sample string 6",
"momentCustomerName": "sample string 7"
},
{
"id": 1,
"customerCode": "sample string 2",
"customerName": "sample string 3",
"createdOn": "2025-12-06T02:58:28.7149951+08:00",
"momentId": "sample string 5",
"momentCustomerCode": "sample string 6",
"momentCustomerName": "sample string 7"
}
],
"other": {}
}