🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## 卸油点油仓列表 ~~~[api] get:/dispatch/SiteStore/index *int:site_id#站点ID int:goods_id#物品ID string:status#状态 int:limit=15#每页数量 int:page=1#页码 <<< success { "code": 0, "msg": "获取成功", "count": 1, "data": [ { "id": 1, "site_id": 12, "goods_id": 4, "name": "1号仓", "physics_volume": "10000", "stop_volume": "9800", "valid_volume": "9900", "status": "enable", "update_time": "2021-11-02 14:51:41", "delete_time": null, "create_time": "2021-11-02 14:51:41" } ] } ~~~ ### 返回字段 | 字段 | 说明 | | --- | --- | | id | 油仓ID | | site_id | 所属站点ID | | goods_id | 物品ID | | name | 油仓名称 | | physics_volume | 物理容积(L) | | stop_volume | 停泵容积(L) | | valid_volume | 有效容积(L) | | status | 状态:`close` 关闭、`enable` 启用 |