Skip to content

Commit

Permalink
feat: vaccination에 icon 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
HyungJu committed Mar 22, 2024
1 parent ad03d9c commit 1411b78
Showing 1 changed file with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,15 @@ import java.util.*
@Entity
@Table(name = "t_vaccination")
class Vaccination(
val diseaseName: String,
val vaccineName: String,
val minOrder: Long,
val maxOrder: Long,
@Enumerated(EnumType.STRING) val vaccinationType: VaccinationType
val diseaseName: String,
val vaccineName: String,
val minOrder: Long,
val maxOrder: Long,
val icon: String,
@Enumerated(EnumType.STRING) val vaccinationType: VaccinationType,
) : BaseEntity() {

@Id
@GenericGenerator(name = "uuid2", strategy = "uuid2")
@Column(columnDefinition = "BINARY(16)", name = "vaccination_id")
val id: UUID? = null
}

0 comments on commit 1411b78

Please sign in to comment.