Rev 27050 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.model;import java.time.LocalDateTime;import com.spice.profitmandi.dao.enumuration.transaction.OrderStatus;public class CustomerOrderDetail {private Integer id;private Integer pendingOrderItemId;public Integer getPendingOrderItemId() {return pendingOrderItemId;}public void setPendingOrderItemId(Integer pendingOrderItemId) {this.pendingOrderItemId = pendingOrderItemId;}private OrderStatus status;private String payMethod;private Integer itemId;private String brand;private String modelNumber;private String modelName;private String color;private Integer quantity;private Float totalPrice;private String imageUrl;private LocalDateTime createdTimeStamp;private LocalDateTime billedTimestamp;public String getImageUrl() {return imageUrl;}public void setImageUrl(String imageUrl) {this.imageUrl = imageUrl;}public LocalDateTime getBilledTimestamp() {return billedTimestamp;}public void setBilledTimestamp(LocalDateTime billedTimestamp) {this.billedTimestamp = billedTimestamp;}public LocalDateTime getCreatedTimeStamp() {return createdTimeStamp;}public void setCreatedTimeStamp(LocalDateTime createdTimeStamp) {this.createdTimeStamp = createdTimeStamp;}public Integer getId() {return id;}public void setId(Integer id) {this.id = id;}public OrderStatus getStatus() {return status;}public void setStatus(OrderStatus status) {this.status = status;}public String getPayMethod() {return payMethod;}public void setPayMethod(String payMethod) {this.payMethod = payMethod;}public Integer getItemId() {return itemId;}public void setItemId(Integer itemId) {this.itemId = itemId;}public String getBrand() {return brand;}public void setBrand(String brand) {this.brand = brand;}public String getModelNumber() {return modelNumber;}public void setModelNumber(String modelNumber) {this.modelNumber = modelNumber;}public String getModelName() {return modelName;}public void setModelName(String modelName) {this.modelName = modelName;}public String getColor() {return color;}public void setColor(String color) {this.color = color;}public Integer getQuantity() {return quantity;}public void setQuantity(Integer quantity) {this.quantity = quantity;}public Float getTotalPrice() {return totalPrice;}public void setTotalPrice(Float totalPrice) {this.totalPrice = totalPrice;}@Overridepublic String toString() {return "CustomerOrderDetail [id=" + id + ", status=" + status + ", payMethod=" + payMethod + ", itemId="+ itemId + ", brand=" + brand + ", modelNumber=" + modelNumber + ", modelName=" + modelName + ", color="+ color + ", quantity=" + quantity + ", totalPrice=" + totalPrice + ", createdTimeStamp="+ createdTimeStamp + ", billedTimestamp=" + billedTimestamp + "]";}}