Last active
September 14, 2019 23:07
-
-
Save dubeboy/326d13574c4686cad6a53c640bab0e0c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package za.co.dubedivine.groceryapp.model | |
import javax.persistence.Entity | |
import javax.persistence.GeneratedValue | |
import javax.persistence.GenerationType | |
import javax.persistence.Id | |
@Entity | |
data class GroceryItem(var name: String, var isAvailable: Boolean) { | |
@Id | |
@GeneratedValue(strategy = GenerationType.AUTO) | |
var id: Long = 0L | |
constructor(): this ("", false) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package za.co.dubedivine.groceryapp.model | |
import javax.persistence.Entity | |
import javax.persistence.GeneratedValue | |
import javax.persistence.GenerationType | |
import javax.persistence.Id | |
@Entity | |
data class GroceryItem(var name: String = "", | |
var isAvailable: Boolean = false, | |
@Id | |
@GeneratedValue(strategy = GenerationType.AUTO) | |
var id: Long = 0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment