POST api/user/feature/type/list
【用户】【博物馆】类型列表
Request Information
URI Parameters
None.
Body Parameters
WebPageRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| skip |
当前页数 |
integer |
None. |
| limit |
一页显示几条数据 |
integer |
None. |
| key |
关键字 |
string |
None. |
| order |
排序字段 |
string |
None. |
| desc |
排序方式 可选:asc/desc |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"skip": 1,
"limit": 2,
"key": "sample string 3",
"order": "sample string 4",
"desc": "desc"
}
application/xml, text/xml
Sample:
<WebPageRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Web.Api"> <desc>desc</desc> <key>sample string 3</key> <limit>2</limit> <order>sample string 4</order> <skip>1</skip> </WebPageRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
【用户】【博物馆】类型列表
MyResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| code |
-1表示失败,0表示成功 |
integer |
None. |
| msg |
错误信息 |
string |
None. |
| data |
响应消息 |
Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"code": 1,
"msg": "sample string 2",
"data": {}
}
application/xml, text/xml
Sample:
<MyResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tools"> <code>1</code> <data /> <msg>sample string 2</msg> </MyResponse>