POST api/miniUser/LoopGetNewEMCount
循环获取新订单数量
Request Information
URI Parameters
None.
Body Parameters
M_miniUserLoadOrderEM| Name | Description | Type | Additional information |
|---|---|---|---|
| sn |
用户sn |
integer |
Required |
| index |
断点序号 index |
integer |
Required |
| type |
类型 0=互守,1=关注,2=收藏 |
integer |
Required |
| lon |
经度 |
string |
Required |
| lat |
纬度 |
string |
Required |
Request Formats
application/json, text/json
Sample:
{
"sn": 1,
"index": 2,
"type": 3,
"lon": "sample string 4",
"lat": "sample string 5"
}
application/xml, text/xml
Sample:
<M_miniUserLoadOrderEM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.DP.Models"> <index>2</index> <lat>sample string 5</lat> <lon>sample string 4</lon> <sn>1</sn> <type>3</type> </M_miniUserLoadOrderEM>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
M_Response| Name | Description | Type | Additional information |
|---|---|---|---|
| Contant |
内容,包含返回所需要的类 |
Object |
Required |
| Status |
状态 |
integer |
Required |
| Msg |
信息 |
string |
Required |
| Num |
数值,数据变动条数或增加时返回的ID |
integer |
Required |
Response Formats
application/json, text/json
Sample:
{
"Contant": {},
"Status": 2,
"Msg": "sample string 3",
"Num": 4
}
application/xml, text/xml
Sample:
<M_Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.DP.Models"> <Msg>sample string 3</Msg> <Num>4</Num> <Status>2</Status> <Contant /> </M_Response>