POST api/Moment/GetMomentReportList

获取举报的列表

Request Information

URI Parameters

None.

Body Parameters

MomentReportSearchRequest
NameDescriptionTypeAdditional information
PageIndex

页码

integer

None.

PageSize

每页多少条

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "pageIndex": 1,
  "pageSize": 2
}

Response Information

Resource Description

获取举报的列表

PageListResponseOfMomentReportDto
NameDescriptionTypeAdditional 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-06-07T14:41:36.0912568+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-06-07T14:41:36.0912568+08:00",
      "momentId": "sample string 5",
      "momentCustomerCode": "sample string 6",
      "momentCustomerName": "sample string 7"
    }
  ],
  "other": {}
}