POST Visual/GetBillField?fBillTypeId={fBillTypeId}&fType={fType}&fIsSouce={fIsSouce}
根据单据查询所有字段
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| fBillTypeId | integer |
Required |
|
| fType | integer |
Required |
|
| fIsSouce | boolean |
Required |
Body Parameters
None.
Response Information
Resource Description
GetBillFieldModel| Name | Description | Type | Additional information |
|---|---|---|---|
| list | Collection of t_ClassInfoSimple |
None. |
|
| error | integer |
None. |
|
| Msg | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"list": [
{
"fPageIndex": 1,
"fIndex": 2,
"fPageCaption": "sample string 3",
"fCaption": "sample string 4",
"fFieldName": "sample string 5",
"fIsEntry": true
},
{
"fPageIndex": 1,
"fIndex": 2,
"fPageCaption": "sample string 3",
"fCaption": "sample string 4",
"fFieldName": "sample string 5",
"fIsEntry": true
}
],
"error": 1,
"Msg": "sample string 2"
}
application/xml, text/xml
Sample:
<GetBillFieldModel 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>
<list xmlns:d2p1="http://schemas.datacontract.org/2004/07/DbFrameModel">
<d2p1:t_ClassInfoSimple>
<d2p1:fCaption>sample string 4</d2p1:fCaption>
<d2p1:fFieldName>sample string 5</d2p1:fFieldName>
<d2p1:fIndex>2</d2p1:fIndex>
<d2p1:fIsEntry>true</d2p1:fIsEntry>
<d2p1:fPageCaption>sample string 3</d2p1:fPageCaption>
<d2p1:fPageIndex>1</d2p1:fPageIndex>
</d2p1:t_ClassInfoSimple>
<d2p1:t_ClassInfoSimple>
<d2p1:fCaption>sample string 4</d2p1:fCaption>
<d2p1:fFieldName>sample string 5</d2p1:fFieldName>
<d2p1:fIndex>2</d2p1:fIndex>
<d2p1:fIsEntry>true</d2p1:fIsEntry>
<d2p1:fPageCaption>sample string 3</d2p1:fPageCaption>
<d2p1:fPageIndex>1</d2p1:fPageIndex>
</d2p1:t_ClassInfoSimple>
</list>
</GetBillFieldModel>