Subversion Repositories SmartDukaan

Rev

View as "text/plain" | Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.common.model;

import java.time.LocalDateTime;
import java.util.List;

public class CustomNotifyOrder {
        
        private int orderId;
        private LocalDateTime createdTime;
        private String modelNumber;
        private String brand;
        private String color;
        private String imageUrl;
        private List<CustomNotifyItem> customNotifyItem;
        
        
        public LocalDateTime getCreatedTime() {
                return createdTime;
        }
        public void setCreatedTime(LocalDateTime createdTime) {
                this.createdTime = createdTime;
        }
        public int getOrderId() {
                return orderId;
        }
        public void setOrderId(int orderId) {
                this.orderId = orderId;
        }
        public List<CustomNotifyItem> getCustomNotifyItem() {
                return customNotifyItem;
        }
        public void setCustomNotifyItem(List<CustomNotifyItem> customNotifyItem) {
                this.customNotifyItem = customNotifyItem;
        }
        public String getModelNumber() {
                return modelNumber;
        }
        public void setModelNumber(String modelNumber) {
                this.modelNumber = modelNumber;
        }
        public String getBrand() {
                return brand;
        }
        public void setBrand(String brand) {
                this.brand = brand;
        }
        public String getColor() {
                return color;
        }
        public void setColor(String color) {
                this.color = color;
        }
        public String getImageUrl() {
                return imageUrl;
        }
        public void setImageUrl(String imageUrl) {
                this.imageUrl = imageUrl;
        }
        @Override
        public String toString() {
                return "CustomNotifyOrder [orderId=" + orderId + ", createdTime=" + createdTime + ", modelNumber=" + modelNumber
                                + ", brand=" + brand + ", color=" + color + ", imageUrl=" + imageUrl + ", customNotifyItem="
                                + customNotifyItem + "]";
        }





}