GET api/CommunityV720/ConvenientClassifyList?streetId={streetId}&sign={sign}&stamp={stamp}
便民服务所有分类
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| streetId | integer |
Default value is 0 |
|
| sign | string |
Default value is |
|
| stamp | string |
Default value is |
Body Parameters
None.
Response Information
Resource Description
ZaiMieApp.WebApi.ViewModel.ResultDataOfZaiMieApp.WebApi.ViewModel.ConvenientServiceClassifyView| Name | Description | Type | Additional 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.ConvenientServiceClassifyView |
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": [
{
"Id": 1,
"name": "sample string 2",
"backgroundImg": "sample string 3"
},
{
"Id": 1,
"name": "sample string 2",
"backgroundImg": "sample string 3"
}
]
}
application/xml, text/xml
Sample:
<ResultDataOfConvenientServiceClassifyViewPr2Hy9OI 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>
<ConvenientServiceClassifyView>
<Id>1</Id>
<backgroundImg>sample string 3</backgroundImg>
<name>sample string 2</name>
</ConvenientServiceClassifyView>
<ConvenientServiceClassifyView>
<Id>1</Id>
<backgroundImg>sample string 3</backgroundImg>
<name>sample string 2</name>
</ConvenientServiceClassifyView>
</data>
<message>sample string 5</message>
<page>3</page>
<pageSize>2</pageSize>
<recordsetCount>1</recordsetCount>
<success>true</success>
</ResultDataOfConvenientServiceClassifyViewPr2Hy9OI>