文档
测试

查询仓库列表

GET
http://localhost:8088/material/cck/page?page=1&limit=2

接口描述

分页查询仓库列表

请求参数

参数名
类型
描述
必填
page(必填)
int
当前页码,从1开始
必填
limit(必填)
int
每页记录数
必填
ckMc
string
按名称模糊查询
必填
ckStatus
string
按状态查询。1:使用中;0:停用
必填
parent
string
按类型查询。0:无;1:省级仓库;2:市州仓库
必填
level
string
按等级查询。ck_level_0:无;ck_level_1:大型仓库;ck_level_2:中型仓库;ck_level_3:小型仓库
必填

说明 / 示例

## 返回值示例 ```json { "code": 0, "msg": "success", "data": { "total": 10, "list": [ { "ckBm": "4", "ckMc": "都江堰", "ckStatus": "1", "ckBy1": null, "ckBy2": null, "lgtd": 103.37, "lttd": 31.01, "x": null, "y": null, "remark": null, "parent": "1", "address": "四川省成都都江堰市", "level": "ck_level_1", "bgtm": null, "tel": "13668185035", "contact": "袁绍文", "deptId": null, "tenantCode": null }, { "ckBm": "5", "ckMc": "夹江", "ckStatus": "1", "ckBy1": null, "ckBy2": null, "lgtd": 103.59, "lttd": 29.75, "x": null, "y": null, "remark": null, "parent": "1", "address": null, "level": "ck_level_0", "bgtm": null, "tel": "18990685269", "contact": "曾虹", "deptId": null, "tenantCode": null } ] } } ```