Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
24917 tejbeer 1
package com.spice.profitmandi.common.model;
2
 
3
import java.time.LocalDateTime;
4
import java.util.List;
5
 
6
public class CustomNotifyOrder {
7
 
8
	private int orderId;
9
	private LocalDateTime createdTime;
10
	private String modelNumber;
11
	private String brand;
12
	private String color;
13
	private String imageUrl;
14
	private List<CustomNotifyItem> customNotifyItem;
15
 
16
 
17
	public LocalDateTime getCreatedTime() {
18
		return createdTime;
19
	}
20
	public void setCreatedTime(LocalDateTime createdTime) {
21
		this.createdTime = createdTime;
22
	}
23
	public int getOrderId() {
24
		return orderId;
25
	}
26
	public void setOrderId(int orderId) {
27
		this.orderId = orderId;
28
	}
29
	public List<CustomNotifyItem> getCustomNotifyItem() {
30
		return customNotifyItem;
31
	}
32
	public void setCustomNotifyItem(List<CustomNotifyItem> customNotifyItem) {
33
		this.customNotifyItem = customNotifyItem;
34
	}
35
	public String getModelNumber() {
36
		return modelNumber;
37
	}
38
	public void setModelNumber(String modelNumber) {
39
		this.modelNumber = modelNumber;
40
	}
41
	public String getBrand() {
42
		return brand;
43
	}
44
	public void setBrand(String brand) {
45
		this.brand = brand;
46
	}
47
	public String getColor() {
48
		return color;
49
	}
50
	public void setColor(String color) {
51
		this.color = color;
52
	}
53
	public String getImageUrl() {
54
		return imageUrl;
55
	}
56
	public void setImageUrl(String imageUrl) {
57
		this.imageUrl = imageUrl;
58
	}
59
	@Override
60
	public String toString() {
61
		return "CustomNotifyOrder [orderId=" + orderId + ", createdTime=" + createdTime + ", modelNumber=" + modelNumber
62
				+ ", brand=" + brand + ", color=" + color + ", imageUrl=" + imageUrl + ", customNotifyItem="
63
				+ customNotifyItem + "]";
64
	}
65
 
66
 
67
 
68
 
69
 
70
}