POST VueApi/GetCtrlList

获取控件(不区分什么端)

Request Information

URI Parameters

None.

Body Parameters

PrintFormListRM
NameDescriptionTypeAdditional information
fBillTypeId

integer

None.

fInterId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "fBillTypeId": 1,
  "fInterId": 2
}

application/xml, text/xml

Sample:
<PrintFormListRM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DbFrameModel.ReqModel">
  <fBillTypeId>1</fBillTypeId>
  <fInterId>2</fInterId>
</PrintFormListRM>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

CtrlListModel
NameDescriptionTypeAdditional information
error

integer

None.

Msg

string

None.

list

Collection of t_DbClassInfo

None.

Response Formats

application/json, text/json

Sample:
{
  "list": [
    {
      "fFieldLength": "sample string 1",
      "fFieldName": "sample string 2",
      "fFieldType": "sample string 3",
      "fPageIndex": 4,
      "fCaption": "sample string 5",
      "fIsEntry": true,
      "fCtlType": 7
    },
    {
      "fFieldLength": "sample string 1",
      "fFieldName": "sample string 2",
      "fFieldType": "sample string 3",
      "fPageIndex": 4,
      "fCaption": "sample string 5",
      "fIsEntry": true,
      "fCtlType": 7
    }
  ],
  "error": 1,
  "Msg": "sample string 2"
}

application/xml, text/xml

Sample:
<CtrlListModel 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_DbClassInfo>
      <d2p1:fCaption>sample string 5</d2p1:fCaption>
      <d2p1:fCtlType>7</d2p1:fCtlType>
      <d2p1:fFieldLength>sample string 1</d2p1:fFieldLength>
      <d2p1:fFieldName>sample string 2</d2p1:fFieldName>
      <d2p1:fFieldType>sample string 3</d2p1:fFieldType>
      <d2p1:fIsEntry>true</d2p1:fIsEntry>
      <d2p1:fPageIndex>4</d2p1:fPageIndex>
    </d2p1:t_DbClassInfo>
    <d2p1:t_DbClassInfo>
      <d2p1:fCaption>sample string 5</d2p1:fCaption>
      <d2p1:fCtlType>7</d2p1:fCtlType>
      <d2p1:fFieldLength>sample string 1</d2p1:fFieldLength>
      <d2p1:fFieldName>sample string 2</d2p1:fFieldName>
      <d2p1:fFieldType>sample string 3</d2p1:fFieldType>
      <d2p1:fIsEntry>true</d2p1:fIsEntry>
      <d2p1:fPageIndex>4</d2p1:fPageIndex>
    </d2p1:t_DbClassInfo>
  </list>
</CtrlListModel>