文档
测试

扣款管理 创建扣款接口

POST
http://172.18.0.33:9001/deduction/add

请求头

参数名
类型
描述
必填
token
string
必填

请求参数

参数名
类型
描述
必填
exhibitionHallNum
string
展馆号
必填
boothNum
string
展位号
必填
builderName
string
搭建商
必填
exhibitorName
string
参展商名称
必填
deductionAmount
int
扣款金额
必填
voucherImage
string
凭证图片
必填
deductionInstructions
string
扣款说明
必填
boothId
long
展位id
必填

说明 / 示例

请求: http://172.18.0.33:9001/deduction/add ```language { "exhibitionHallNum": "W2",//展馆号 "boothNum": "A12",//展位号 "builderName": "济南槐荫搭建集团",//搭建商 "exhibitorName": "会展无忧",//参展商 "deductionAmount": 100000,//扣款金额 "voucherImage": "voucher.png",//凭证图片 "deductionInstructions": "扣款说明",//扣款说明 "boothId": 1 //展位id } ``` 应答: ```language { "isok": 1, "msg": "申请成功", "data": { "id": 1681844215694782465, "exhibitionHallNum": "W2", "boothNum": "A12", "builderName": "济南槐荫搭建集团", "exhibitorName": "会展无忧", "deductionAmount": 100000, "voucherImage": "voucher.png", "deductionInstructions": "扣款说明", "createdTime": "2023-07-20 09:51:22", "createdBy": 1, "updatedTime": "2023-07-20 09:51:22", "deleted": null, "boothId": 1 } } ```