Class Schedule

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

public class Schedule extends Object
This class represents a Schedule in the application. It contains fields that represent different properties of a schedule, such as id, date, time, status, total_Value, and references to Services, Customers, and Pets objects. It also contains getter and setter methods for these fields.
  • Constructor Details

    • Schedule

      public Schedule()
  • Method Details

    • getId

      public int getId()
    • setId

      public void setId(int id)
    • getDate

      public String getDate()
    • setDate

      public void setDate(String date)
    • getTime

      public String getTime()
    • setTime

      public void setTime(String time)
    • getTotal_Value

      public double getTotal_Value()
    • setTotal_Value

      public void setTotal_Value(double total_Value)
    • getStatus

      public String getStatus()
    • setStatus

      public void setStatus(String status)
    • getCustumers

      public Customers getCustumers()
    • setCustumers

      public void setCustumers(Customers custumers)
    • getPets

      public Pets getPets()
    • setPets

      public void setPets(Pets pets)
    • getServices

      public Services getServices()
    • setServices

      public void setServices(Services services)