GET api/Product/UsersEvaluationList?pid={pid}&pageIndex={pageIndex}&pageSize={pageSize}
“UsersEvaluationList”的文档。
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| pid | “pid”的文档。 |
Define this parameter in the request URI. |
| pageIndex | “pageIndex”的文档。 |
Define this parameter in the request URI. |
| pageSize | “pageSize”的文档。 |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"Items": [
{
"Id": 1,
"Message": "sample string 2",
"HeadImg": "sample string 3",
"NickName": "sample string 4",
"Index": 5,
"CreateTime": "sample string 6"
},
{
"Id": 1,
"Message": "sample string 2",
"HeadImg": "sample string 3",
"NickName": "sample string 4",
"Index": 5,
"CreateTime": "sample string 6"
},
{
"Id": 1,
"Message": "sample string 2",
"HeadImg": "sample string 3",
"NickName": "sample string 4",
"Index": 5,
"CreateTime": "sample string 6"
}
],
"PageIndex": 1,
"PageTotal": 2,
"Total": 3
}
application/xml, text/xml
Sample:
<UserCellListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TaiShengShi.Models">
<Items>
<UserCellProduct>
<CreateTime>sample string 6</CreateTime>
<HeadImg>sample string 3</HeadImg>
<Id>1</Id>
<Index>5</Index>
<Message>sample string 2</Message>
<NickName>sample string 4</NickName>
</UserCellProduct>
<UserCellProduct>
<CreateTime>sample string 6</CreateTime>
<HeadImg>sample string 3</HeadImg>
<Id>1</Id>
<Index>5</Index>
<Message>sample string 2</Message>
<NickName>sample string 4</NickName>
</UserCellProduct>
<UserCellProduct>
<CreateTime>sample string 6</CreateTime>
<HeadImg>sample string 3</HeadImg>
<Id>1</Id>
<Index>5</Index>
<Message>sample string 2</Message>
<NickName>sample string 4</NickName>
</UserCellProduct>
</Items>
<PageIndex>1</PageIndex>
<PageTotal>2</PageTotal>
<Total>3</Total>
</UserCellListModel>