Subversion Repositories SmartDukaan

Rev

Rev 28566 | 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 java.util.List;

import com.spice.profitmandi.dao.entity.catalog.CustomerOffer;
import com.spice.profitmandi.dao.enumuration.transaction.OrderStatus;

public class CustomerOrderDetail {

        private Integer id;
        private Integer 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;
        private Integer fofoOrderItemId;
        private Integer fofoOrderId;
        private String invoiceNumber;
        private LocalDateTime cancelledTimestamp;
        private String customerName;
        private String customerMobile;
        private String customerCity;
        private String customerState;
        private String customerEmail;
        private List<String> serialNumber;
        private long offerCount;
        private boolean insurance;

        public long getOfferCount() {
                return offerCount;
        }

        public void setOfferCount(long offerCount) {
                this.offerCount = offerCount;
        }

        public boolean isInsurance() {
                return insurance;
        }

        public void setInsurance(boolean insurance) {
                this.insurance = insurance;
        }

        public String getCustomerEmail() {
                return customerEmail;
        }

        public void setCustomerEmail(String customerEmail) {
                this.customerEmail = customerEmail;
        }

        public List<String> getSerialNumber() {
                return serialNumber;
        }

        public void setSerialNumber(List<String> serialNumber) {
                this.serialNumber = serialNumber;
        }

        public String getCustomerName() {
                return customerName;
        }

        public void setCustomerName(String customerName) {
                this.customerName = customerName;
        }

        public String getCustomerMobile() {
                return customerMobile;
        }

        public void setCustomerMobile(String customerMobile) {
                this.customerMobile = customerMobile;
        }

        public String getCustomerCity() {
                return customerCity;
        }

        public void setCustomerCity(String customerCity) {
                this.customerCity = customerCity;
        }

        public String getCustomerState() {
                return customerState;
        }

        public void setCustomerState(String customerState) {
                this.customerState = customerState;
        }

        public LocalDateTime getCancelledTimestamp() {
                return cancelledTimestamp;
        }

        public void setCancelledTimestamp(LocalDateTime cancelledTimestamp) {
                this.cancelledTimestamp = cancelledTimestamp;
        }

        public Integer getPendingOrderItemId() {
                return pendingOrderItemId;
        }

        public void setPendingOrderItemId(Integer pendingOrderItemId) {
                this.pendingOrderItemId = pendingOrderItemId;
        }

        public String getInvoiceNumber() {
                return invoiceNumber;
        }

        public void setInvoiceNumber(String invoiceNumber) {
                this.invoiceNumber = invoiceNumber;
        }

        public Integer getFofoOrderId() {
                return fofoOrderId;
        }

        public void setFofoOrderId(Integer fofoOrderId) {
                this.fofoOrderId = fofoOrderId;
        }

        public Integer getFofoOrderItemId() {
                return fofoOrderItemId;
        }

        public void setFofoOrderItemId(Integer fofoOrderItemId) {
                this.fofoOrderItemId = fofoOrderItemId;
        }

        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;
        }

        @Override
        public String toString() {
                return "CustomerOrderDetail [id=" + id + ", pendingOrderItemId=" + pendingOrderItemId + ", status=" + status
                                + ", payMethod=" + payMethod + ", itemId=" + itemId + ", brand=" + brand + ", modelNumber="
                                + modelNumber + ", modelName=" + modelName + ", color=" + color + ", quantity=" + quantity
                                + ", totalPrice=" + totalPrice + ", imageUrl=" + imageUrl + ", createdTimeStamp=" + createdTimeStamp
                                + ", billedTimestamp=" + billedTimestamp + ", fofoOrderItemId=" + fofoOrderItemId + ", fofoOrderId="
                                + fofoOrderId + ", invoiceNumber=" + invoiceNumber + ", cancelledTimestamp=" + cancelledTimestamp
                                + ", customerName=" + customerName + ", customerMobile=" + customerMobile + ", customerCity="
                                + customerCity + ", customerState=" + customerState + ", customerEmail=" + customerEmail
                                + ", serialNumber=" + serialNumber + ", offerCount=" + offerCount + ", insurance=" + insurance + "]";
        }

}