文档
测试

扣款管理 编辑接口

POST
http://172.18.0.33:9001/deduction/update

请求头

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

请求参数

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

说明 / 示例

请求: http://172.18.0.33:9001/deduction/update ```language { "id": 1681845144028475393, "exhibitionHallNum": "W2", "boothNum": "A12", "builderName": "济南槐荫搭建集团", "exhibitorName": "会展无忧", "deductionAmount": 50000, "voucherImage": "voucher5.png", "deductionInstructions": "扣款说明", "boothId": 1 } ``` 应答: ```language { "isok": 1, "msg": "更新成功", "data": { "id": 1681845144028475393, "exhibitionHallNum": "W2", "boothNum": "A12", "builderName": "济南槐荫搭建集团", "exhibitorName": "会展无忧", "deductionAmount": 50000, "voucherImage": "voucher5.png", "deductionInstructions": "扣款说明", "createdTime": "2023-07-20 09:58:27", "createdBy": 1, "updatedTime": "2023-07-20 09:58:27", "deleted": null, "boothId": 1 } } ```