- j2
- 消息服务
- 通知提醒
- 消息中间件
- 系统管理
- j3
- c1
- 基础配置
- 人员配置
- c2
- c3
- c4
- 盘点管理
- 综合盘点
- 动碰盘点
- 盘点
- 盘点差异
- 复盘
- 盘点差异过账
- 上架调整
- 下架调整
- 动仓盘点
- 计费配置
- c5
- c7
- c8
- c6
- J5
- j4
- j8
- j1
- j7
分页查询所有上架货物
GET
/lis/qurry
最后修改时间:2025-03-12 13:13:34
责任人:未设置
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Query 参数
pageIndex
integer
查询页码
示例值:
1
pageSize
integer
查询条数
示例值:
10
id
string
id
示例值:
0
create_date
string
创建日期
示例值:
xxxx-xx-xx
goods_id
string
商品编码
示例值:
RL001
goods_name
string
商品名称
示例值:
牛羊肉半成品
goods_unit
string
单位
示例值:
箱
order_id
string
原始单据编码
示例值:
RK20240320-0003
cus_code
string
货主
示例值:
X00001-XXXX-KH有限公司
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/lis/qurry?pageIndex=1&pageSize=10'
返回响应
🟢200成功
application/json
Body
code
integer
状态码
>= -2147483648<= 2147483647
默认值:
10000
message
string
提示信息
默认值:
success
data
object (ListgoodsPageDTO)
数据对象
pageIndex
integer
当前页码
默认值:
1
pageSize
integer
每页数据条数
默认值:
5
total
integer <int64>
数据的总条数
默认值:
0
pages
integer <int64>
数据的总页数
默认值:
0
rows
array[object (ListgoodsBasePageDTO) {7}]
当前页数据列表
示例
{
"code": 10000,
"message": "success",
"data": {
"pageIndex": 1,
"pageSize": 5,
"total": 0,
"pages": 0,
"rows": []
}
}