POST api/Beilv/PostLastWeekBeilv

获取上周的倍率信息

Request Information

URI Parameters

None.

Body Parameters

BasePost
NameDescriptionTypeAdditional information
tel

登录账号

string

None.

token

token

string

None.

uid

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "tel": "sample string 1",
  "token": "sample string 2",
  "uid": 1
}

application/xml, text/xml

Sample:
<BasePost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">
  <tel>sample string 1</tel>
  <token>sample string 2</token>
  <uid>1</uid>
</BasePost>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

weekBeilvResult
NameDescriptionTypeAdditional information
beilvDays

decimal number

None.

beilvAmount

decimal number

None.

failCount

integer

None.

failPercent

未完成百分比(不带百分号,下同)

decimal number

None.

OkCount

integer

None.

OkPercent

decimal number

None.

betterCount

integer

None.

betterPercent

decimal number

None.

AllAmount

decimal number

None.

AllPercent

decimal number

None.

MonthAmount

decimal number

None.

planAmount

本周预计倍率销售额

decimal number

None.

code

状态码,200成功,300错误,400缺少参数,500没有权限,301数据不存在...

integer

None.

msg

成功或者错误的说明,例如:登录成功,token过期...

string

None.

Response Formats

application/json, text/json

Sample:
{
  "beilvDays": 1.1,
  "beilvAmount": 2.0,
  "failCount": 3,
  "failPercent": 4.1,
  "OkCount": 5,
  "OkPercent": 6.1,
  "betterCount": 7,
  "betterPercent": 8.1,
  "AllAmount": 9.0,
  "AllPercent": 10.0,
  "MonthAmount": 11.0,
  "planAmount": 12.0,
  "code": 13,
  "msg": "sample string 14"
}

application/xml, text/xml

Sample:
<weekBeilvResult 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">13</code>
  <msg xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">sample string 14</msg>
  <AllAmount>9</AllAmount>
  <AllPercent>10</AllPercent>
  <MonthAmount>11</MonthAmount>
  <OkCount>5</OkCount>
  <OkPercent>6.1</OkPercent>
  <beilvAmount>2</beilvAmount>
  <beilvDays>1.1</beilvDays>
  <betterCount>7</betterCount>
  <betterPercent>8.1</betterPercent>
  <failCount>3</failCount>
  <failPercent>4.1</failPercent>
  <planAmount>12</planAmount>
</weekBeilvResult>