diff --git a/src/main/java/org/springframework/samples/petclinic/visit/Visit.java b/src/main/java/org/springframework/samples/petclinic/visit/Visit.java index 25e7cc5ad72a4661212397ac424a3bc49fee898b..251d027df173f99f7e05a5952f534901411f74f7 100755 --- a/src/main/java/org/springframework/samples/petclinic/visit/Visit.java +++ b/src/main/java/org/springframework/samples/petclinic/visit/Visit.java @@ -37,24 +37,16 @@ import org.springframework.samples.petclinic.model.BaseEntity; @Table(name = "visits") public class Visit extends BaseEntity { - /** - * Holds value of property date. - */ @Column(name = "visit_date") @Temporal(TemporalType.TIMESTAMP) @DateTimeFormat(pattern = "yyyy/MM/dd") private Date date; - /** - * Holds value of property description. - */ @NotEmpty @Column(name = "description") private String description; - /** - * Holds value of property pet. - */ + @Column(name = "pet_id") private Integer petId; @@ -67,56 +59,31 @@ public class Visit extends BaseEntity { } - /** - * Getter for property date. - * - * @return Value of property date. - */ public Date getDate() { return this.date; } - /** - * Setter for property date. - * - * @param date New value of property date. - */ + public void setDate(Date date) { this.date = date; } - /** - * Getter for property description. - * - * @return Value of property description. - */ + public String getDescription() { return this.description; } - /** - * Setter for property description. - * - * @param description New value of property description. - */ + public void setDescription(String description) { this.description = description; } - /** - * Getter for property pet id. - * - * @return Value of property pet id. - */ + public Integer getPetId() { return this.petId; } - /** - * Setter for property pet id. - * - * @param petId New value of property pet id. - */ + public void setPetId(Integer petId) { this.petId = petId; }