POST VueApi/getQueryPlanList
加载查询条件方案列表
Request Information
URI Parameters
None.
Body Parameters
QueryPlanListReqModel| Name | Description | Type | Additional information |
|---|---|---|---|
| super | boolean |
None. |
|
| fClassId | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"super": true,
"fClassId": "sample string 2"
}
application/xml, text/xml
Sample:
<QueryPlanListReqModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DbFrameModel.Models.Vue"> <fClassId>sample string 2</fClassId> <super>true</super> </QueryPlanListReqModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
QueryPlanListResModel| Name | Description | Type | Additional information |
|---|---|---|---|
| list | Collection of QueryPlanTitleModel |
None. |
|
| error | integer |
None. |
|
| Msg | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"list": [
{
"fSchemeId": 1,
"fSuper": 2,
"fSchemeName": "sample string 3",
"fInUse": 4
},
{
"fSchemeId": 1,
"fSuper": 2,
"fSchemeName": "sample string 3",
"fInUse": 4
}
],
"error": 1,
"Msg": "sample string 2"
}
application/xml, text/xml
Sample:
<QueryPlanListResModel 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:QueryPlanTitleModel>
<d2p1:fInUse>4</d2p1:fInUse>
<d2p1:fSchemeId>1</d2p1:fSchemeId>
<d2p1:fSchemeName>sample string 3</d2p1:fSchemeName>
<d2p1:fSuper>2</d2p1:fSuper>
</d2p1:QueryPlanTitleModel>
<d2p1:QueryPlanTitleModel>
<d2p1:fInUse>4</d2p1:fInUse>
<d2p1:fSchemeId>1</d2p1:fSchemeId>
<d2p1:fSchemeName>sample string 3</d2p1:fSchemeName>
<d2p1:fSuper>2</d2p1:fSuper>
</d2p1:QueryPlanTitleModel>
</list>
</QueryPlanListResModel>