Visit.java
上传用户:dezhong
上传日期:2022-08-10
资源大小:167k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. package org.springframework.samples.petclinic;
  2. import java.util.Date;
  3. /**
  4.  * Simple JavaBean domain object representing a visit.
  5.  *
  6.  * @author Ken Krebs
  7.  */
  8. public class Visit extends BaseEntity {
  9. /** Holds value of property date. */
  10. private Date date;
  11. /** Holds value of property description. */
  12. private String description;
  13. /** Holds value of property pet. */
  14. private Pet pet;
  15. /** Creates a new instance of Visit for the current date */
  16. public Visit() {
  17. this.date = new Date();
  18. }
  19. /** Getter for property date.
  20.  * @return Value of property date.
  21.  */
  22. public Date getDate() {
  23. return this.date;
  24. }
  25. /** Setter for property date.
  26.  * @param date New value of property date.
  27.  */
  28. public void setDate(Date date) {
  29. this.date = date;
  30. }
  31. /** Getter for property description.
  32.  * @return Value of property description.
  33.  */
  34. public String getDescription() {
  35. return this.description;
  36. }
  37. /** Setter for property description.
  38.  * @param description New value of property description.
  39.  */
  40. public void setDescription(String description) {
  41. this.description = description;
  42. }
  43. /** Getter for property pet.
  44.  * @return Value of property pet.
  45.  */
  46. public Pet getPet() {
  47. return this.pet;
  48. }
  49. /** Setter for property pet.
  50.  * @param pet New value of property pet.
  51.  */
  52. protected void setPet(Pet pet) {
  53. this.pet = pet;
  54. }
  55. }