Exercise Type Classes

This commit is contained in:
ZalanBoss
2020-05-10 13:39:14 +02:00
parent 7055f2927f
commit 99598420da
3 changed files with 82 additions and 0 deletions
@@ -0,0 +1,20 @@
package com.aitrainer.api.model
import javax.persistence.Entity
import javax.persistence.GeneratedValue
import javax.persistence.GenerationType
import javax.persistence.Id
import javax.validation.constraints.NotBlank
@Entity
data class ExerciseType (
@get: NotBlank
val name: String = "",
val description: String = "",
val video: Long = 0,
@Id @GeneratedValue(strategy = GenerationType.IDENTITY)
val type_id: Long = 0
)