- 🦊一分钟,了解 Apifox !
- 示例项目
- WMS
- 基础服务
- 物料转换
- 入库上架
分页获取单据条码明细
GET
/PutOnShelves/getBillBarcodes
请求参数
Query 参数
billId
integer
可选
mitemId
integer
可选
type
string
可选
pageNum
integer
可选
不传入
或则传入null
则返回全量数据pageSize
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/getBillBarcodes'
返回响应
🟢200成功
application/json
Body
code
string | null
可选
message
string | null
响应描述信息
data
object (PageRespDTO«PutOnShelvesExecRespDTO»)
响应结果
pageNum
integer | null
当前页
pageSize
integer | null
每页大小
pages
integer | null
总页数
total
integer | null
总记录数
pageable
boolean | null
是否分页
list
array[object (PutOnShelvesExecRespDTO) {18}] | null
列表数据
info
object (Object)
额外信息
示例
{
"code": "",
"message": "",
"data": {
"pageNum": 0,
"pageSize": 0,
"pages": 0,
"total": 0,
"pageable": false,
"list": [
{
"id": 0,
"executeBillId": 0,
"executeBillNo": "",
"executeBillDetailId": 0,
"barcode": "",
"barcodeType": "",
"qty": 0.0,
"mitemId": 0,
"uom": "",
"uomName": "",
"onhandId": 0,
"invBatchNo": "",
"toWarehouseName": "",
"toDistrictName": "",
"toLocationName": ""
}
],
"info": {}
}
}