updated startdate

This commit is contained in:
Rahul_Nanda 2023-03-10 01:12:19 +05:30
parent e0beb74146
commit 11c0f550df

View file

@ -48,6 +48,10 @@ public class Pet extends NamedEntity {
@DateTimeFormat(pattern = "yyyy-MM-dd")
private LocalDate birthDate;
@Column(name = "birth_date")
@DateTimeFormat(pattern = "yyyy-MM-dd")
private LocalDate startDate;
@ManyToOne
@JoinColumn(name = "type_id")
private PetType type;