...
|
...
|
@@ -7,7 +7,7 @@ |
|
|
-------------------------
|
|
|
|属性名称|类型|例子|说明|是否必填|
|
|
|
|--------|----|----|----|--------|
|
|
|
|warehouseId|int|12|仓库id|否|
|
|
|
|warehouseId|int|12|仓库id|是|
|
|
|
|
|
|
### 返回
|
|
|
|
...
|
...
|
@@ -44,10 +44,46 @@ |
|
|
### 返回
|
|
|
|
|
|
```json
|
|
|
|
|
|
```
|
|
|
## 3.根据storeId查询所有打印机
|
|
|
|
|
|
> 接口名: `/StoreController/getPrinterInfosByStoreId`
|
|
|
|
|
|
### 入参
|
|
|
|
|
|
-------------------------
|
|
|
|属性名称|类型|例子|说明|是否必填|
|
|
|
|--------|----|----|----|--------|
|
|
|
|storeId|int|66|门店id|是|
|
|
|
|
|
|
### 返回
|
|
|
|
|
|
```json
|
|
|
{
|
|
|
"code": 200,
|
|
|
//品牌ID,int型组成数组,数据类型要一致,如果没有品牌数据,返回空数组[],
|
|
|
"data": [50,60,80],
|
|
|
"message": "ok"
|
|
|
"code": 200,
|
|
|
"message": "success.",
|
|
|
"md5": null,
|
|
|
"data": [
|
|
|
{
|
|
|
"id": null,
|
|
|
//打印机名称
|
|
|
"printerName": "yoho",
|
|
|
//打印机IP
|
|
|
"printerIp": "0.0.0.0",
|
|
|
"storeId": 66,
|
|
|
"storeName": null,
|
|
|
"createTime": null
|
|
|
},
|
|
|
{
|
|
|
"id": null,
|
|
|
"printerName": "qianxuejun",
|
|
|
"printerIp": "20.20.20.12",
|
|
|
"storeId": 66,
|
|
|
"storeName": null,
|
|
|
"createTime": null
|
|
|
}
|
|
|
]
|
|
|
}
|
|
|
}
|
|
|
``` |
...
|
...
|
|