POST VueApi/getConditioin

获取操作符

Request Information

URI Parameters

None.

Body Parameters

ConditioinReqModel
NameDescriptionTypeAdditional information
fBillTypeId

integer

None.

fPageIndex

string

None.

fName

string

None.

Request Formats

application/json, text/json

Sample:
{
  "fBillTypeId": 1,
  "fPageIndex": "sample string 2",
  "fName": "sample string 3"
}

application/xml, text/xml

Sample:
<ConditioinReqModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DbFrameModel.Models.Vue">
  <fBillTypeId>1</fBillTypeId>
  <fName>sample string 3</fName>
  <fPageIndex>sample string 2</fPageIndex>
</ConditioinReqModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ConditioinResModel
NameDescriptionTypeAdditional information
list

Collection of t_ClassCondition

None.

error

integer

None.

Msg

string

None.

Response Formats

application/json, text/json

Sample:
{
  "list": [
    {
      "fItemId": 1,
      "fIndex": 2,
      "fName": "sample string 3",
      "fOperate": "sample string 4",
      "fNeedValue": true
    },
    {
      "fItemId": 1,
      "fIndex": 2,
      "fName": "sample string 3",
      "fOperate": "sample string 4",
      "fNeedValue": true
    }
  ],
  "error": 1,
  "Msg": "sample string 2"
}

application/xml, text/xml

Sample:
<ConditioinResModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BLL.VueApi">
  <Msg>sample string 2</Msg>
  <error>1</error>
  <list xmlns:d2p1="http://schemas.datacontract.org/2004/07/DbFrameModel">
    <d2p1:t_ClassCondition>
      <d2p1:fIndex>2</d2p1:fIndex>
      <d2p1:fItemId>1</d2p1:fItemId>
      <d2p1:fName>sample string 3</d2p1:fName>
      <d2p1:fNeedValue>true</d2p1:fNeedValue>
      <d2p1:fOperate>sample string 4</d2p1:fOperate>
    </d2p1:t_ClassCondition>
    <d2p1:t_ClassCondition>
      <d2p1:fIndex>2</d2p1:fIndex>
      <d2p1:fItemId>1</d2p1:fItemId>
      <d2p1:fName>sample string 3</d2p1:fName>
      <d2p1:fNeedValue>true</d2p1:fNeedValue>
      <d2p1:fOperate>sample string 4</d2p1:fOperate>
    </d2p1:t_ClassCondition>
  </list>
</ConditioinResModel>