POST api/WangLaiZhang/wanglaizhangList

Request Information

URI Parameters

None.

Body Parameters

wanglaizhangPost
NameDescriptionTypeAdditional information
gonghuoshangId

供应商id ,不填写则代表是龙达飞

integer

None.

begindt

string

None.

enddt

string

None.

skip

跳过多少条

integer

None.

limit

取多少条

integer

None.

tel

登录账号

string

None.

token

token

string

None.

uid

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "gonghuoshangId": 1,
  "begindt": "sample string 1",
  "enddt": "sample string 2",
  "skip": 3,
  "limit": 4,
  "tel": "sample string 5",
  "token": "sample string 6",
  "uid": 1
}

application/xml, text/xml

Sample:
<wanglaizhangPost 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 5</tel>
  <token xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">sample string 6</token>
  <uid xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">1</uid>
  <limit xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">4</limit>
  <skip xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">3</skip>
  <begindt>sample string 1</begindt>
  <enddt>sample string 2</enddt>
  <gonghuoshangId>1</gonghuoshangId>
</wanglaizhangPost>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

wanglaizhangResult
NameDescriptionTypeAdditional information
list

数组: wanglaizhangItem

None.

code

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

integer

None.

msg

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

string

None.

Response Formats

application/json, text/json

Sample:
{
  "list": [
    {
      "id": 1,
      "dt": "sample string 2",
      "type": 1,
      "count": 3,
      "amount": 1.0,
      "yishou": 4,
      "yishouAmount": 5.0,
      "yishouChengben": 6.0
    },
    {
      "id": 1,
      "dt": "sample string 2",
      "type": 1,
      "count": 3,
      "amount": 1.0,
      "yishou": 4,
      "yishouAmount": 5.0,
      "yishouChengben": 6.0
    }
  ],
  "code": 1,
  "msg": "sample string 2"
}

application/xml, text/xml

Sample:
<wanglaizhangResult 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">1</code>
  <msg xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">sample string 2</msg>
  <list>
    <wanglaizhangItem>
      <amount>1</amount>
      <count>3</count>
      <dt>sample string 2</dt>
      <id>1</id>
      <type>jinhuo</type>
      <yishou>4</yishou>
      <yishouAmount>5</yishouAmount>
      <yishouChengben>6</yishouChengben>
    </wanglaizhangItem>
    <wanglaizhangItem>
      <amount>1</amount>
      <count>3</count>
      <dt>sample string 2</dt>
      <id>1</id>
      <type>jinhuo</type>
      <yishou>4</yishou>
      <yishouAmount>5</yishouAmount>
      <yishouChengben>6</yishouChengben>
    </wanglaizhangItem>
  </list>
</wanglaizhangResult>