Class Sales

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

public class Sales extends Object
This class represents a Sale in the application. It contains fields that represent different properties of a sale, such as id, customer, sale_date, total_sale, and note. It also contains getter and setter methods for these fields.
  • Constructor Details

    • Sales

      public Sales()
  • Method Details

    • getId

      public int getId()
    • setId

      public void setId(int id)
    • getCustomer

      public Customers getCustomer()
    • setCustomer

      public void setCustomer(Customers customer)
    • getSale_date

      public String getSale_date()
    • setSale_date

      public void setSale_date(String sale_date)
    • getTotal_sale

      public double getTotal_sale()
    • setTotal_sale

      public void setTotal_sale(double total_sale)
    • getNote

      public String getNote()
    • setNote

      public void setNote(String note)