Rev 29418 | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.common.model;import java.time.LocalDateTime;import in.shop2020.model.v1.order.OrderStatus;public class CustomOrder {private Integer id;private LocalDateTime expectedDeliveryTime;private LocalDateTime promisedDeliveryTime;private String retailerName;private String retailerMobileNumber;private String retailerPinCode;private String retailerAddress1;private String retailerCity;private String retailerState;private OrderStatus status;private String statusDescription;private Float totalAmount;private Integer transactionId;private Float shippingRefund;private Integer itemId;private String productGoup;private String brand;private String modelNumber;private String modelName;private String color;private Integer quantity;private Float totalPrice;private String extraInfo;private Float shippingCost;private String imageUrl;private Boolean cancellable;private String providerName;private int providerId;private String airwayBillNo;private String delayReason;private LocalDateTime cancellationTimestamp;private LocalDateTime billingTimestamp;private LocalDateTime shippingTimestamp;private String invoiceNumber;private LocalDateTime expectedShipping;private int delayAfterShipping;private TrackingModel trackingModel;public TrackingModel getTrackingModel() {return trackingModel;}public void setTrackingModel(TrackingModel trackingModel) {this.trackingModel = trackingModel;}public LocalDateTime getExpectedShipping() {return expectedShipping;}public void setExpectedShipping(LocalDateTime expectedShipping) {this.expectedShipping = expectedShipping;}public int getDelayAfterShipping() {return delayAfterShipping;}public void setDelayAfterShipping(int delayAfterShipping) {this.delayAfterShipping = delayAfterShipping;}public String getInvoiceNumber() {return invoiceNumber;}public void setInvoiceNumber(String invoiceNumber) {this.invoiceNumber = invoiceNumber;}public LocalDateTime getCancellationTimestamp() {return cancellationTimestamp;}public void setCancellationTimestamp(LocalDateTime cancellationTimestamp) {this.cancellationTimestamp = cancellationTimestamp;}public LocalDateTime getBillingTimestamp() {return billingTimestamp;}public void setBillingTimestamp(LocalDateTime billingTimestamp) {this.billingTimestamp = billingTimestamp;}public LocalDateTime getShippingTimestamp() {return shippingTimestamp;}public void setShippingTimestamp(LocalDateTime shippingTimestamp) {this.shippingTimestamp = shippingTimestamp;}public String getDelayReason() {return delayReason;}public void setDelayReason(String delayReason) {this.delayReason = delayReason;}public String getProviderName() {return providerName;}public void setProviderName(String providerName) {this.providerName = providerName;}public int getProviderId() {return providerId;}public void setProviderId(int proivderId) {this.providerId = proivderId;}public String getAirwayBillNo() {return airwayBillNo;}public void setAirwayBillNo(String airwayBillNo) {this.airwayBillNo = airwayBillNo;}public Boolean getCancellable() {return cancellable;}public Boolean isCancellable() {return cancellable;}public void setCancellable(Boolean cancellable) {this.cancellable = cancellable;}public String getImageUrl() {return imageUrl;}public void setImageUrl(String imageUrl) {this.imageUrl = imageUrl;}private LocalDateTime deliveryTimestamp;public LocalDateTime getDeliveryTimestamp() {return deliveryTimestamp;}public void setDeliveryTimestamp(LocalDateTime deliveryTimestamp) {this.deliveryTimestamp = deliveryTimestamp;}public Float getShippingCost() {return shippingCost;}public void setShippingCost(Float shippingCost) {this.shippingCost = shippingCost;}public LocalDateTime getCreateTimestamp() {return createTimestamp;}public void setCreateTimestamp(LocalDateTime createTimestamp) {this.createTimestamp = createTimestamp;}private LocalDateTime createTimestamp;public Integer getId() {return id;}public void setId(Integer id) {this.id = id;}public LocalDateTime getExpectedDeliveryTime() {return expectedDeliveryTime;}public void setExpectedDeliveryTime(LocalDateTime expectedDeliveryTime) {this.expectedDeliveryTime = expectedDeliveryTime;}public LocalDateTime getPromisedDeliveryTime() {return promisedDeliveryTime;}public void setPromisedDeliveryTime(LocalDateTime promisedDeliveryTime) {this.promisedDeliveryTime = promisedDeliveryTime;}public String getRetailerName() {return retailerName;}public void setRetailerName(String retailerName) {this.retailerName = retailerName;}public String getRetailerMobileNumber() {return retailerMobileNumber;}public void setRetailerMobileNumber(String retailerMobileNumber) {this.retailerMobileNumber = retailerMobileNumber;}public String getRetailerPinCode() {return retailerPinCode;}public void setRetailerPinCode(String retailerPinCode) {this.retailerPinCode = retailerPinCode;}public String getRetailerAddress1() {return retailerAddress1;}public void setRetailerAddress1(String retailerAddress1) {this.retailerAddress1 = retailerAddress1;}public String getRetailerCity() {return retailerCity;}public void setRetailerCity(String retailerCity) {this.retailerCity = retailerCity;}public String getRetailerState() {return retailerState;}public void setRetailerState(String retailerState) {this.retailerState = retailerState;}public OrderStatus getStatus() {return status;}public void setStatus(OrderStatus status) {this.status = status;}public String getStatusDescription() {return statusDescription;}public void setStatusDescription(String statusDescription) {this.statusDescription = statusDescription;}public Float getTotalAmount() {return totalAmount;}public void setTotalAmount(Float totalAmount) {this.totalAmount = totalAmount;}public Integer getTransactionId() {return transactionId;}public void setTransactionId(Integer transactionId) {this.transactionId = transactionId;}public Float getShippingRefund() {return shippingRefund;}public void setShippingRefund(Float shippingRefund) {this.shippingRefund = shippingRefund;}public Integer getItemId() {return itemId;}public void setItemId(Integer itemId) {this.itemId = itemId;}public String getProductGoup() {return productGoup;}public void setProductGoup(String productGoup) {this.productGoup = productGoup;}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;}public String getExtraInfo() {return extraInfo;}public void setExtraInfo(String extraInfo) {this.extraInfo = extraInfo;}@Overridepublic String toString() {return "CustomOrder [id=" + id + ", expectedDeliveryTime=" + expectedDeliveryTime + ", promisedDeliveryTime="+ promisedDeliveryTime + ", retailerName=" + retailerName + ", retailerMobileNumber="+ retailerMobileNumber + ", retailerPinCode=" + retailerPinCode + ", retailerAddress1="+ retailerAddress1 + ", retailerCity=" + retailerCity + ", retailerState=" + retailerState + ", status="+ status + ", statusDescription=" + statusDescription + ", totalAmount=" + totalAmount+ ", transactionId=" + transactionId + ", shippingRefund=" + shippingRefund + ", itemId=" + itemId+ ", productGoup=" + productGoup + ", brand=" + brand + ", modelNumber=" + modelNumber + ", modelName="+ modelName + ", color=" + color + ", quantity=" + quantity + ", totalPrice=" + totalPrice+ ", extraInfo=" + extraInfo + ", shippingCost=" + shippingCost + ", imageUrl=" + imageUrl+ ", cancellable=" + cancellable + ", providerName=" + providerName + ", providerId=" + providerId+ ", airwayBillNo=" + airwayBillNo + ", delayReason=" + delayReason + ", cancellationTimestamp="+ cancellationTimestamp + ", billingTimestamp=" + billingTimestamp + ", shippingTimestamp="+ shippingTimestamp + ", invoiceNumber=" + invoiceNumber + ", delayAfterShipping=" + delayAfterShipping+ ", deliveryTimestamp=" + deliveryTimestamp + ", createTimestamp=" + createTimestamp + "]";}}