POST VueApi/getFastQueryFilter
快速搜索筛选条件
Request Information
URI Parameters
None.
Body Parameters
QueryReqModel| Name | Description | Type | Additional information |
|---|---|---|---|
| super | boolean |
None. |
|
| fClassId | string |
None. |
|
| listDetail | Collection of QueryDetail |
None. |
|
| fSchemeId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"super": true,
"fClassId": "sample string 2",
"listDetail": [
{
"fPageIndex": "sample string 1",
"fName": "sample string 2",
"fCheck": "sample string 3",
"fIsEntry": true,
"fMustCheck": true
},
{
"fPageIndex": "sample string 1",
"fName": "sample string 2",
"fCheck": "sample string 3",
"fIsEntry": true,
"fMustCheck": true
}
],
"fSchemeId": 3
}
application/xml, text/xml
Sample:
<QueryReqModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DbFrameModel.Models.Vue">
<fClassId>sample string 2</fClassId>
<fSchemeId>3</fSchemeId>
<listDetail xmlns:d2p1="http://schemas.datacontract.org/2004/07/DbFrameModel">
<d2p1:QueryDetail>
<d2p1:fCheck>sample string 3</d2p1:fCheck>
<d2p1:fIsEntry>true</d2p1:fIsEntry>
<d2p1:fMustCheck>true</d2p1:fMustCheck>
<d2p1:fName>sample string 2</d2p1:fName>
<d2p1:fPageIndex>sample string 1</d2p1:fPageIndex>
</d2p1:QueryDetail>
<d2p1:QueryDetail>
<d2p1:fCheck>sample string 3</d2p1:fCheck>
<d2p1:fIsEntry>true</d2p1:fIsEntry>
<d2p1:fMustCheck>true</d2p1:fMustCheck>
<d2p1:fName>sample string 2</d2p1:fName>
<d2p1:fPageIndex>sample string 1</d2p1:fPageIndex>
</d2p1:QueryDetail>
</listDetail>
<super>true</super>
</QueryReqModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
FastQueryResModel| Name | Description | Type | Additional information |
|---|---|---|---|
| result | Collection of t_ClassFastSearch |
None. |
|
| error | integer |
None. |
|
| Msg | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"result": [
{
"fBillTypeId": 1,
"fTitle": "sample string 2",
"fIsMore": true,
"fSql": "sample string 4",
"fOrder": 5
},
{
"fBillTypeId": 1,
"fTitle": "sample string 2",
"fIsMore": true,
"fSql": "sample string 4",
"fOrder": 5
}
],
"error": 1,
"Msg": "sample string 2"
}
application/xml, text/xml
Sample:
<FastQueryResModel 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>
<result xmlns:d2p1="http://schemas.datacontract.org/2004/07/DbFrameModel.DbEntity">
<d2p1:t_ClassFastSearch>
<d2p1:fBillTypeId>1</d2p1:fBillTypeId>
<d2p1:fIsMore>true</d2p1:fIsMore>
<d2p1:fOrder>5</d2p1:fOrder>
<d2p1:fSql>sample string 4</d2p1:fSql>
<d2p1:fTitle>sample string 2</d2p1:fTitle>
</d2p1:t_ClassFastSearch>
<d2p1:t_ClassFastSearch>
<d2p1:fBillTypeId>1</d2p1:fBillTypeId>
<d2p1:fIsMore>true</d2p1:fIsMore>
<d2p1:fOrder>5</d2p1:fOrder>
<d2p1:fSql>sample string 4</d2p1:fSql>
<d2p1:fTitle>sample string 2</d2p1:fTitle>
</d2p1:t_ClassFastSearch>
</result>
</FastQueryResModel>