POST VueApi/SavePrintFormScheme
保存套打设置
Request Information
URI Parameters
None.
Body Parameters
PrintFormSaveReqModel| Name | Description | Type | Additional information |
|---|---|---|---|
| fBillTypeId | integer |
None. |
|
| fItemId | Collection of string |
None. |
|
| fTemplateId | integer |
None. |
|
| fPageRows | integer |
None. |
|
| fNotBlank | boolean |
None. |
|
| fIsUpPage | boolean |
None. |
|
| fRowHeight | integer |
None. |
|
| fDuplicate | integer |
None. |
|
| fHFId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"fBillTypeId": 1,
"fItemId": [
"sample string 1",
"sample string 2"
],
"fTemplateId": 2,
"fPageRows": 3,
"fNotBlank": true,
"fIsUpPage": true,
"fRowHeight": 6,
"fDuplicate": 7,
"fHFId": 8
}
application/xml, text/xml
Sample:
<PrintFormSaveReqModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DbFrameModel.Models.Vue">
<fBillTypeId>1</fBillTypeId>
<fDuplicate>7</fDuplicate>
<fHFId>8</fHFId>
<fIsUpPage>true</fIsUpPage>
<fItemId xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</fItemId>
<fNotBlank>true</fNotBlank>
<fPageRows>3</fPageRows>
<fRowHeight>6</fRowHeight>
<fTemplateId>2</fTemplateId>
</PrintFormSaveReqModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResModel| Name | Description | Type | Additional information |
|---|---|---|---|
| error | integer |
None. |
|
| Msg | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"error": 1,
"Msg": "sample string 2"
}
application/xml, text/xml
Sample:
<ResModel 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> </ResModel>