POST Visual/GetExcelFormList
加载excel导出模板列表
Request Information
URI Parameters
None.
Body Parameters
PrintFormListRM| Name | Description | Type | Additional 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
ExcelFormListModel| Name | Description | Type | Additional information |
|---|---|---|---|
| error | integer |
None. |
|
| Msg | string |
None. |
|
| list | Collection of t_ClassExcel |
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:
<ExcelFormListModel 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.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>
</ExcelFormListModel>