Class Warehouse

java.lang.Object
de.bytestore.hostinger.entity.ecommerce.Warehouse

@Entity(name="host_Warehouses") public class Warehouse extends Object
Represents a warehouse entity for managing storage and distribution information. This entity is mapped to the `HOST_WAREHOUSES` table. The Warehouse class holds details such as the warehouse name, address, and location metadata, including street, city, state, country, and postal code. It also includes an internally generated unique identifier (UUID) for referencing the warehouse in the system.
  • Constructor Details

    • Warehouse

      public Warehouse()
  • Method Details

    • getState

      public String getState()
    • setState

      public void setState(String state)
    • getCountry

      public String getCountry()
    • setCountry

      public void setCountry(String country)
    • getPostcode

      public String getPostcode()
    • setPostcode

      public void setPostcode(String postcode)
    • getCity

      public String getCity()
    • setCity

      public void setCity(String city)
    • getStreet

      public String getStreet()
    • setStreet

      public void setStreet(String street)
    • getName

      public String getName()
    • setName

      public void setName(String name)
    • getUuid

      public UUID getUuid()
    • setUuid

      public void setUuid(UUID uuid)
    • getId

      public Integer getId()
    • setId

      public void setId(Integer id)