POST api/FenXi/YingYeFenXiOfUser
营业分析(个人)
Request Information
URI Parameters
None.
Body Parameters
yyfxOfUserPost| Name | Description | Type | Additional information |
|---|---|---|---|
| groupid | integer |
None. |
|
| beginDt | string |
None. |
|
| endDt | string |
None. |
|
| tel |
登录账号 |
string |
None. |
| token |
token |
string |
None. |
| uid | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"groupid": 1,
"beginDt": "sample string 2",
"endDt": "sample string 3",
"tel": "sample string 4",
"token": "sample string 5",
"uid": 1
}
application/xml, text/xml
Sample:
<yyfxOfUserPost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Controllers"> <tel xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">sample string 4</tel> <token xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">sample string 5</token> <uid xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">1</uid> <beginDt>sample string 2</beginDt> <endDt>sample string 3</endDt> <groupid>1</groupid> </yyfxOfUserPost>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
yyfxOfUserListResult| Name | Description | Type | Additional information |
|---|---|---|---|
| list | 数组: yyfxOfUserItem |
None. |
|
| count | decimal number |
None. |
|
| amount | decimal number |
None. |
|
| code |
状态码,200成功,300错误,400缺少参数,500没有权限,301数据不存在... |
integer |
None. |
| msg |
成功或者错误的说明,例如:登录成功,token过期... |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"list": [
{
"username": "sample string 1",
"userid": 2,
"count": 3,
"amount": 4.0,
"zhanbi": 5.0,
"paiming": 6
},
{
"username": "sample string 1",
"userid": 2,
"count": 3,
"amount": 4.0,
"zhanbi": 5.0,
"paiming": 6
}
],
"count": 1.0,
"amount": 2.0,
"code": 3,
"msg": "sample string 4"
}
application/xml, text/xml
Sample:
<yyfxOfUserListResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Controllers">
<code xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">3</code>
<msg xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">sample string 4</msg>
<amount>2</amount>
<count>1</count>
<list>
<yyfxOfUserItem>
<amount>4</amount>
<count>3</count>
<paiming>6</paiming>
<userid>2</userid>
<username>sample string 1</username>
<zhanbi>5</zhanbi>
</yyfxOfUserItem>
<yyfxOfUserItem>
<amount>4</amount>
<count>3</count>
<paiming>6</paiming>
<userid>2</userid>
<username>sample string 1</username>
<zhanbi>5</zhanbi>
</yyfxOfUserItem>
</list>
</yyfxOfUserListResult>