Interface WarehouseInventoryRepository
- All Superinterfaces:
CrudRepository<WarehouseInventory, Long>, GenericRepository<WarehouseInventory, Long>
-
Method Summary
Modifier and TypeMethodDescriptionupsert(WarehouseInventory warehouseInventory) upsertAll(Iterable<WarehouseInventory> warehouseInventories) Methods inherited from interface CrudRepository
count, delete, deleteAll, deleteAll, deleteById, existsById, findAll, findById, insert, insertAll, save, saveAll, update, updateAll
-
Method Details
-
upsert
@Upsert(conflictsOn={"sku","warehouse"}) WarehouseInventory upsert(WarehouseInventory warehouseInventory) -
upsertAll
@Upsert(conflictsOn={"sku","warehouse"}) List<WarehouseInventory> upsertAll(Iterable<WarehouseInventory> warehouseInventories)
-