文档
测试

退还押金 扣款明细接口

GET
http://172.18.0.33:9001/boothInfo/deductionDetails

请求参数

参数名
类型
描述
必填
boothId
long
展位id
必填

响应参数

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

说明 / 示例

请求: http://172.18.0.33:9001/boothInfo/deductionDetails?boothId=1 应答: ```language { "isok": 1, "msg": "查询扣款明细成功", "data": [ { "id": 1681844215694782465, "exhibitionHallNum": "W2", "boothNum": "A12", "builderName": "济南槐荫搭建集团", "exhibitorName": "会展无忧", "deductionAmount": 3000, "voucherImage": "voucher.png", "deductionInstructions": "扣款说明", "createdTime": "2023-07-20 09:51:22", "createdBy": 1, "updatedTime": "2023-07-20 09:51:22", "deleted": 1, "boothId": 1 } ] } ```