POST VueApi/GetOutputFormList

获取导出模板列表

Request Information

URI Parameters

None.

Body Parameters

PrintTemplateReqModel
NameDescriptionTypeAdditional information
fBillTypeId

integer

None.

fInterId

integer

None.

Request Formats

application/json, text/json

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

application/xml, text/xml

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

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

OutputFormListVueModel
NameDescriptionTypeAdditional information
list

Collection of t_ClassExcel

None.

error

integer

None.

Msg

string

None.

Response Formats

application/json, text/json

Sample:
{
  "list": [
    {
      "fInterId": 1,
      "fBillTypeId": 2,
      "fName": "sample string 3",
      "fIsDefault": true,
      "fProcedure": "sample string 5",
      "fFileNameFormat": "sample string 6"
    },
    {
      "fInterId": 1,
      "fBillTypeId": 2,
      "fName": "sample string 3",
      "fIsDefault": true,
      "fProcedure": "sample string 5",
      "fFileNameFormat": "sample string 6"
    }
  ],
  "error": 1,
  "Msg": "sample string 2"
}

application/xml, text/xml

Sample:
<OutputFormListVueModel 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.DbEntity">
    <d2p1:t_ClassExcel>
      <d2p1:fBillTypeId>2</d2p1:fBillTypeId>
      <d2p1:fFileNameFormat>sample string 6</d2p1:fFileNameFormat>
      <d2p1:fInterId>1</d2p1:fInterId>
      <d2p1:fIsDefault>true</d2p1:fIsDefault>
      <d2p1:fName>sample string 3</d2p1:fName>
      <d2p1:fProcedure>sample string 5</d2p1:fProcedure>
    </d2p1:t_ClassExcel>
    <d2p1:t_ClassExcel>
      <d2p1:fBillTypeId>2</d2p1:fBillTypeId>
      <d2p1:fFileNameFormat>sample string 6</d2p1:fFileNameFormat>
      <d2p1:fInterId>1</d2p1:fInterId>
      <d2p1:fIsDefault>true</d2p1:fIsDefault>
      <d2p1:fName>sample string 3</d2p1:fName>
      <d2p1:fProcedure>sample string 5</d2p1:fProcedure>
    </d2p1:t_ClassExcel>
  </list>
</OutputFormListVueModel>