GET api/UserInfoV770/FeedBackList?page={page}

反馈列表

Request Information

URI Parameters

NameDescriptionTypeAdditional information
page

integer

Default value is 1

Body Parameters

None.

Response Information

Resource Description

ZaiMieApp.WebApi.ViewModel.ResultDataOfZaiMieApp.WebApi.ViewModel.FeedBack
NameDescriptionTypeAdditional information
recordsetCount

integer

None.

pageSize

integer

None.

page

integer

None.

allPage

integer

None.

message

string

None.

success

boolean

None.

code

integer

None.

data

Collection of ZaiMieApp.WebApi.ViewModel.FeedBack

None.

Response Formats

application/json, text/json

Sample:
{
  "recordsetCount": 1,
  "pageSize": 2,
  "page": 3,
  "allPage": 4,
  "message": "sample string 5",
  "success": true,
  "code": 7,
  "data": [
    {
      "userinfoId": 1,
      "content": "sample string 2",
      "newspapergroupId": 3,
      "dataType": 4,
      "sign": "sample string 5",
      "stamp": "sample string 6"
    },
    {
      "userinfoId": 1,
      "content": "sample string 2",
      "newspapergroupId": 3,
      "dataType": 4,
      "sign": "sample string 5",
      "stamp": "sample string 6"
    }
  ]
}

application/xml, text/xml

Sample:
<ResultDataOfFeedBackPr2Hy9OI xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZaiMieApp.WebApi.ViewModel">
  <allPage>4</allPage>
  <code>7</code>
  <data>
    <FeedBack>
      <sign>sample string 5</sign>
      <stamp>sample string 6</stamp>
      <content>sample string 2</content>
      <dataType>4</dataType>
      <newspapergroupId>3</newspapergroupId>
      <userinfoId>1</userinfoId>
    </FeedBack>
    <FeedBack>
      <sign>sample string 5</sign>
      <stamp>sample string 6</stamp>
      <content>sample string 2</content>
      <dataType>4</dataType>
      <newspapergroupId>3</newspapergroupId>
      <userinfoId>1</userinfoId>
    </FeedBack>
  </data>
  <message>sample string 5</message>
  <page>3</page>
  <pageSize>2</pageSize>
  <recordsetCount>1</recordsetCount>
  <success>true</success>
</ResultDataOfFeedBackPr2Hy9OI>