class StoredItem { InventoryItem inventoryItem StoreLocation storeLocation Integer quantity = 0 static belongsTo = [InventoryItem] static constraints = { quantity(min:0) } String toString() { "${this.quantity} item(s) at ${storeLocation} in ${storeLocation.inventoryStore}" } }