POST VueApi/GetPrintFormScheme
获取套打用户参数
Request Information
URI Parameters
None.
Body Parameters
GetPrintTemplateReqModel| Name | Description | Type | Additional information |
|---|---|---|---|
| fTemplateId | integer |
None. |
|
| fBillTypeId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"fTemplateId": 1,
"fBillTypeId": 2
}
application/xml, text/xml
Sample:
<GetPrintTemplateReqModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DbFrameModel.Models.Vue"> <fBillTypeId>2</fBillTypeId> <fTemplateId>1</fTemplateId> </GetPrintTemplateReqModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetPrintTemplateModel| Name | Description | Type | Additional information |
|---|---|---|---|
| scheme | t_ClassPrintScheme |
None. |
|
| error | integer |
None. |
|
| Msg | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"scheme": {
"fPageRows": 1,
"fRowHeight": 2,
"fNotBlank": true,
"fIsUpPage": true,
"fDuplicate": 5,
"fHFId": 6
},
"error": 1,
"Msg": "sample string 2"
}
application/xml, text/xml
Sample:
<GetPrintTemplateModel 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>
<scheme xmlns:d2p1="http://schemas.datacontract.org/2004/07/DbFrameModel.DbEntity">
<d2p1:fDuplicate>5</d2p1:fDuplicate>
<d2p1:fHFId>6</d2p1:fHFId>
<d2p1:fIsUpPage>true</d2p1:fIsUpPage>
<d2p1:fNotBlank>true</d2p1:fNotBlank>
<d2p1:fPageRows>1</d2p1:fPageRows>
<d2p1:fRowHeight>2</d2p1:fRowHeight>
</scheme>
</GetPrintTemplateModel>