POST Visual/GetEventT_SearchField?fBillTypeId={fBillTypeId}

T事件表数据源

Request Information

URI Parameters

NameDescriptionTypeAdditional information
fBillTypeId

integer

Required

Body Parameters

None.

Response Information

Resource Description

SearchFieldModel
NameDescriptionTypeAdditional information
SearchFieldList

Collection of SearchField

None.

error

integer

None.

Msg

string

None.

Response Formats

application/json, text/json

Sample:
{
  "SearchFieldList": [
    {
      "fPageIndex": 1,
      "fFieldName": "sample string 2",
      "fCaption": "sample string 3",
      "fPageIndexFieldName": "sample string 4"
    },
    {
      "fPageIndex": 1,
      "fFieldName": "sample string 2",
      "fCaption": "sample string 3",
      "fPageIndexFieldName": "sample string 4"
    }
  ],
  "error": 1,
  "Msg": "sample string 2"
}

application/xml, text/xml

Sample:
<SearchFieldModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BLL.Visual">
  <Msg>sample string 2</Msg>
  <error>1</error>
  <SearchFieldList xmlns:d2p1="http://schemas.datacontract.org/2004/07/DbFrameModel">
    <d2p1:SearchField>
      <d2p1:fCaption>sample string 3</d2p1:fCaption>
      <d2p1:fFieldName>sample string 2</d2p1:fFieldName>
      <d2p1:fPageIndex>1</d2p1:fPageIndex>
      <d2p1:fPageIndexFieldName>sample string 4</d2p1:fPageIndexFieldName>
    </d2p1:SearchField>
    <d2p1:SearchField>
      <d2p1:fCaption>sample string 3</d2p1:fCaption>
      <d2p1:fFieldName>sample string 2</d2p1:fFieldName>
      <d2p1:fPageIndex>1</d2p1:fPageIndex>
      <d2p1:fPageIndexFieldName>sample string 4</d2p1:fPageIndexFieldName>
    </d2p1:SearchField>
  </SearchFieldList>
</SearchFieldModel>