文档
测试

账单详情查询

POST
http://127.0.0.1:8181/staff/bill/billDetail

请求参数

参数名
类型
描述
必填
billId
long
账单id
必填

响应参数

参数名
类型
描述
必填
id
string
账单ID
必填
writeOffCode
string
账单编号
必填
orderId
string
订单ID
必填
tradeNo
string
交易流水号
必填
type
string
1:应收汇总;2:保证金应收 3:意向金应收 4:应付
必填
orderCode
string
合同编码
必填
orderPeriod
string
所属帐期
必填
price
decimal
应收金额
必填
realPrice
decimal
实收金额
必填
partName
string
园区名称
必填
buildingName
string
楼栋名称
必填
houseName
string
房号名称
必填
customerName
string
客户名称
必填
arrearsAmount
decimal
欠收金额
必填
status
int
0:未收款(未付款) 1:已收款(已付款) 2:部分收款(部分付款)3:确认收款
必填
mobilePhone
string
联系人手机号
必填
list
list
费用条目列表
必填
id
long
条目id
必填
billType
long
收费项目(1电表,2峰谷平电表,3空调电表,4水表)
必填
billTypeStr
string
收费项目名称
必填
period
string
所属帐期
必填
payTime
date
应收日期
必填
payAmount
decimal
应付金额
必填
realityAmount
decimal
实付金额
必填
uncollectedAmount
decimal
欠收金额
必填
meterName
string
表名称
必填

说明 / 示例

**请求报文** ```language { "billId":"1585095551122468864" } ``` **响应报文** ```json { "code": "0", "msg": "成功", "detail": null, "result": { "id": "1585095551156023296", "writeOffCode": "YS20221026102643703", "orderId": "1580954935681634304", "tradeNo": "1585095551156023297", "type": "1", "status": 0, "orderCode": "HT202210159341", "orderPeriod": "2022-11", "price": 30620.16, "realPrice": 0.00, "partName": "万隆数字园", "buildingName": "B座", "houseName": "B101", "customerName": "深圳市王麻子刀具厂", "arrearsAmount": 30620.16, "list": [ { "id": "83", "billType": -2, "billTypeStr": "物业管理费", "period": "2022-11", "payTime": null, "payAmount": 300.00, "realityAmount": 0.00, "uncollectedAmount": 300.00, "meterName": null }, { "id": "84", "billType": -1, "billTypeStr": "租金", "period": "2022-11", "payTime": null, "payAmount": 30000.00, "realityAmount": 0.00, "uncollectedAmount": 30000.00, "meterName": null }, { "id": "85", "billType": 2, "billTypeStr": "基本电费(元)", "period": "2022-11", "payTime": null, "payAmount": 106.72, "realityAmount": 0.00, "uncollectedAmount": 106.72, "meterName": null }, { "id": "86", "billType": 3, "billTypeStr": "综合能耗分摊费(元)", "period": "2022-11", "payTime": null, "payAmount": 106.72, "realityAmount": 0.00, "uncollectedAmount": 106.72, "meterName": null }, { "id": "87", "billType": 9, "billTypeStr": "垃圾清运费(元)", "period": "2022-11", "payTime": null, "payAmount": 106.72, "realityAmount": 0.00, "uncollectedAmount": 106.72, "meterName": null } ] }, "traceId": "f7b6e8a5481c4ce6a1bce8b8f0e2c74c", "success": true } ```