POST api/FAB/userFabList

Request Information

URI Parameters

None.

Body Parameters

userFabListPost
NameDescriptionTypeAdditional information
userid

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:
{
  "userid": 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:
<userFabListPost 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>
  <userid>1</userid>
</userFabListPost>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

userFabListResult
NameDescriptionTypeAdditional information
list

数组: userFabListItem

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",
      "username": "sample string 3",
      "groupname": "sample string 4",
      "fuppercode": "sample string 5",
      "fuppercontent": "sample string 6",
      "fjeanscode": "sample string 7",
      "fjeanscontent": "sample string 8",
      "auppercode": "sample string 9",
      "auppercontent": "sample string 10",
      "ajeanscode": "sample string 11",
      "ajeanscontent": "sample string 12",
      "buppercode": "sample string 13",
      "buppercontent": "sample string 14",
      "bjeanscode": "sample string 15",
      "bjeanscontent": "sample string 16",
      "imgList": [
        "sample string 1",
        "sample string 2"
      ],
      "neida": "sample string 17"
    },
    {
      "id": 1,
      "dt": "sample string 2",
      "username": "sample string 3",
      "groupname": "sample string 4",
      "fuppercode": "sample string 5",
      "fuppercontent": "sample string 6",
      "fjeanscode": "sample string 7",
      "fjeanscontent": "sample string 8",
      "auppercode": "sample string 9",
      "auppercontent": "sample string 10",
      "ajeanscode": "sample string 11",
      "ajeanscontent": "sample string 12",
      "buppercode": "sample string 13",
      "buppercontent": "sample string 14",
      "bjeanscode": "sample string 15",
      "bjeanscontent": "sample string 16",
      "imgList": [
        "sample string 1",
        "sample string 2"
      ],
      "neida": "sample string 17"
    }
  ],
  "code": 1,
  "msg": "sample string 2"
}

application/xml, text/xml

Sample:
<userFabListResult 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>
    <userFabListItem>
      <ajeanscode>sample string 11</ajeanscode>
      <ajeanscontent>sample string 12</ajeanscontent>
      <auppercode>sample string 9</auppercode>
      <auppercontent>sample string 10</auppercontent>
      <bjeanscode>sample string 15</bjeanscode>
      <bjeanscontent>sample string 16</bjeanscontent>
      <buppercode>sample string 13</buppercode>
      <buppercontent>sample string 14</buppercontent>
      <dt>sample string 2</dt>
      <fjeanscode>sample string 7</fjeanscode>
      <fjeanscontent>sample string 8</fjeanscontent>
      <fuppercode>sample string 5</fuppercode>
      <fuppercontent>sample string 6</fuppercontent>
      <groupname>sample string 4</groupname>
      <id>1</id>
      <imgList xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <d4p1:string>sample string 1</d4p1:string>
        <d4p1:string>sample string 2</d4p1:string>
      </imgList>
      <neida>sample string 17</neida>
      <username>sample string 3</username>
    </userFabListItem>
    <userFabListItem>
      <ajeanscode>sample string 11</ajeanscode>
      <ajeanscontent>sample string 12</ajeanscontent>
      <auppercode>sample string 9</auppercode>
      <auppercontent>sample string 10</auppercontent>
      <bjeanscode>sample string 15</bjeanscode>
      <bjeanscontent>sample string 16</bjeanscontent>
      <buppercode>sample string 13</buppercode>
      <buppercontent>sample string 14</buppercontent>
      <dt>sample string 2</dt>
      <fjeanscode>sample string 7</fjeanscode>
      <fjeanscontent>sample string 8</fjeanscontent>
      <fuppercode>sample string 5</fuppercode>
      <fuppercontent>sample string 6</fuppercontent>
      <groupname>sample string 4</groupname>
      <id>1</id>
      <imgList xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <d4p1:string>sample string 1</d4p1:string>
        <d4p1:string>sample string 2</d4p1:string>
      </imgList>
      <neida>sample string 17</neida>
      <username>sample string 3</username>
    </userFabListItem>
  </list>
</userFabListResult>