- 🦊一分钟,了解 Apifox !
- 示例项目
- WMS
- 基础服务
- 物料转换
- 入库上架
获取单据信息
GET
/PutOnShelves/getBillById
请求参数
Query 参数
billId
integer
必需
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/PutOnShelves/getBillById?billId'
返回响应
🟢200成功
application/json
Body
code
string | null
可选
message
string | null
响应描述信息
data
object (PutOnShelvesBillRespDTO)
响应结果
id
integer | null
单据ID
executeBillNo
string | null
执行单单据号
status
string | null
状态
accountingDate
string | null
记账日期
remark
string | null
备注
executeUserName
string | null
执行人
executeDate
string | null
执行时间
warehouseId
integer | null
仓库ID
warehouseName
string | null
仓库名称
items
array[object (PutOnShelvesItemRespDTO) {10}] | null
单据执行条目
默认值:
new ArrayList<>()
示例
{
"code": "",
"message": "",
"data": {
"id": 0,
"executeBillNo": "",
"status": "",
"accountingDate": "",
"remark": "",
"executeUserName": "",
"executeDate": "",
"warehouseId": 0,
"warehouseName": "",
"items": [
{
"mitemId": 0,
"mitemName": "",
"uom": "",
"uomName": "",
"mitemLocationNames": "",
"avlQty": 0.0,
"qty": 0.0,
"barcodeCount": 0,
"warehouseId": 0,
"warehouseName": ""
}
]
}
}