Skip to content

Instantly share code, notes, and snippets.

@mchernyavskaya
Created August 22, 2019 14:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mchernyavskaya/64a104430e0b4da94c4d3e1fa49b8918 to your computer and use it in GitHub Desktop.
Save mchernyavskaya/64a104430e0b4da94c4d3e1fa49b8918 to your computer and use it in GitHub Desktop.
@Document
data class Product(
@Id
val id: String? = null,
val sku: String,
val name: String
)
interface ProductRepository : MongoRepository<Product, String>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment