Class Vaccine

java.lang.Object
br.com.pethub.model.Vaccine

public class Vaccine extends Object
This class represents a Vaccine in the application. It contains fields that represent different properties of a vaccine, such as id, vaccine_name, vaccine_application, vaccine_expiration, note, and references to Customers and Pets objects. It also contains getter and setter methods for these fields.
  • Constructor Details

    • Vaccine

      public Vaccine()
  • Method Details

    • getId

      public int getId()
    • setId

      public void setId(int id)
    • getVaccine_name

      public String getVaccine_name()
    • setVaccine_name

      public void setVaccine_name(String vaccine_name)
    • getVaccine_application

      public String getVaccine_application()
    • setVaccine_application

      public void setVaccine_application(String vaccine_application)
    • getVaccine_expiration

      public String getVaccine_expiration()
    • setVaccine_expiration

      public void setVaccine_expiration(String vaccine_expiration)
    • getNote

      public String getNote()
    • setNote

      public void setNote(String note)
    • getCustumers

      public Customers getCustumers()
    • setCustumers

      public void setCustumers(Customers custumers)
    • getPets

      public Pets getPets()
    • setPets

      public void setPets(Pets pets)