| | |
| | | * @param goodsId |
| | | * @param goodsType |
| | | */ |
| | | public void offlineCommonGoods(Long goodsId, Integer goodsType); |
| | | public void offlineCommonGoods(String goodsId, Integer goodsType); |
| | | |
| | | /** |
| | | * 根据商品ID和商品类型查询库商品 |
| | |
| | | * @param goodsType |
| | | * @return |
| | | */ |
| | | public CommonGoods getCommonGoodsByGoodsIdAndGoodsType(Long goodsId, Integer goodsType); |
| | | public CommonGoods getCommonGoodsByGoodsIdAndGoodsType(String goodsId, Integer goodsType); |
| | | |
| | | /** |
| | | * 批量更新 |
| | |
| | | * @param list |
| | | * @return |
| | | */ |
| | | public List<CommonGoods> getByListGoodsId(List<Long> list, Integer goodsType); |
| | | public List<CommonGoods> getByListGoodsId(List<String> list, Integer goodsType); |
| | | |
| | | |
| | | /** |