🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## 添加卸油点油仓 ~~~[api] post:/dispatch/SiteStore/add *int:site_id#所属站点ID *int:goods_id#物品ID *string:name#油仓名称 *int:physics_volume#物理容积(L) *int:stop_volume#停泵容积(L) *int:valid_volume#有效容积(L) *string:status=enable#状态 <<< success { "code": 0, "msg": "添加成功", "data": { "site_id": "12", "goods_id": "4", "name": "1号仓", "physics_volume": "10000", "stop_volume": "9800", "valid_volume": "9900", "status": "enable", "create_time": "2021-11-02 14:51:41", "update_time": "2021-11-02 14:51:41", "id": "1" } } <<< error { "code": 1, "msg": "数据校验不通过:名称不能为空" } ~~~