文档
测试

仓库查询

POST
http://localhost:8081/insoApp/storage/queryStorageList

请求参数

参数名
类型
描述
必填
page
integer
当前页
必填
limit
integer
当前页面展示数量
必填
storageName
String
仓库名称
必填
startTime
String
起始时间(2020-08-24 09:04:15)
必填
entTime
String
结束时间
必填

响应参数

参数名
类型
描述
必填
code
int
200
必填
message
string
执行结果信息
必填
data
json
响应数据
必填

请求示例

http://localhost:8081/insoApp/storage/queryStorageList?page=1&limit=1&startTime=2020-08-24 09:04:15&endTime=2020-08-24 09:04:15

响应示例

``` { "code": 0, "msg": "成功", "data": { "totalCount": 1, "pageSize": 1, "totalPage": 1, "currPage": 1, "list": [ { "id": "1297701216964026368", "enterpriseId": 15, "storageName": "仓库名称", "address": "详细地址", "mnemonicCode": "助记码", "administratorUserId": 0, "contactPhone": "联系电话", "remark": "描述", "attachmentUrl": "文件路径", "createUserId": 80, "timeCreate": "2020-08-24 09:04:15", "modifiedUserId": null, "timeModified": null, "isdeleted": 0, "provinceCode": null, "cityCode": null, "areaCode": null, "areaName": null, "cityName": null, "provinceName": null } ] } } ```