Class OrderProductEntity

java.lang.Object
com.mt.ecommerce.product.entity.OrderProductEntity

@Entity public class OrderProductEntity extends Object
Entity class representing the association between Orders and Products.
  • Constructor Details

    • OrderProductEntity

      public OrderProductEntity()
  • Method Details

    • getIdentification

      public UUID getIdentification()
    • setIdentification

      public void setIdentification(UUID identification)
    • getCreatedAt

      public LocalDateTime getCreatedAt()
    • setCreatedAt

      public void setCreatedAt(LocalDateTime createdAt)
    • getOrderId

      public UUID getOrderId()
    • setOrderId

      public void setOrderId(UUID orderId)
    • getProductId

      public UUID getProductId()
    • setProductId

      public void setProductId(UUID productId)
    • getQuantity

      public int getQuantity()
    • setQuantity

      public void setQuantity(int quantity)