Skip to content

Instantly share code, notes, and snippets.

@ashkrit
Created May 24, 2020 03:21
case class Product(id: Long, name: String, desc: String, brand: String, price: Double)
case class OrderItem(orderId: Long, itemId: Long, noOfUnit: Int, totalPrice: Double,
productName: String, productDesc: String, productBrand: String, productPrice: Double)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment