Subversion Repositories SmartDukaan

Rev

Rev 27050 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
27046 tejbeer 1
package com.spice.profitmandi.dao.model;
2
 
3
import java.time.LocalDateTime;
4
 
5
import com.spice.profitmandi.dao.enumuration.transaction.OrderStatus;
6
 
7
public class CustomerOrderDetail {
8
 
9
	private Integer id;
10
	private OrderStatus status;
11
	private String payMethod;
12
	private Integer itemId;
13
	private String brand;
14
	private String modelNumber;
15
	private String modelName;
16
	private String color;
17
	private Integer quantity;
18
	private Float totalPrice;
19
	private LocalDateTime createdTimeStamp;
20
	private LocalDateTime billedTimestamp;
21
 
22
	public LocalDateTime getBilledTimestamp() {
23
		return billedTimestamp;
24
	}
25
 
26
	public void setBilledTimestamp(LocalDateTime billedTimestamp) {
27
		this.billedTimestamp = billedTimestamp;
28
	}
29
 
30
	public LocalDateTime getCreatedTimeStamp() {
31
		return createdTimeStamp;
32
	}
33
 
34
	public void setCreatedTimeStamp(LocalDateTime createdTimeStamp) {
35
		this.createdTimeStamp = createdTimeStamp;
36
	}
37
 
38
	public Integer getId() {
39
		return id;
40
	}
41
 
42
	public void setId(Integer id) {
43
		this.id = id;
44
	}
45
 
46
	public OrderStatus getStatus() {
47
		return status;
48
	}
49
 
50
	public void setStatus(OrderStatus status) {
51
		this.status = status;
52
	}
53
 
54
	public String getPayMethod() {
55
		return payMethod;
56
	}
57
 
58
	public void setPayMethod(String payMethod) {
59
		this.payMethod = payMethod;
60
	}
61
 
62
	public Integer getItemId() {
63
		return itemId;
64
	}
65
 
66
	public void setItemId(Integer itemId) {
67
		this.itemId = itemId;
68
	}
69
 
70
	public String getBrand() {
71
		return brand;
72
	}
73
 
74
	public void setBrand(String brand) {
75
		this.brand = brand;
76
	}
77
 
78
	public String getModelNumber() {
79
		return modelNumber;
80
	}
81
 
82
	public void setModelNumber(String modelNumber) {
83
		this.modelNumber = modelNumber;
84
	}
85
 
86
	public String getModelName() {
87
		return modelName;
88
	}
89
 
90
	public void setModelName(String modelName) {
91
		this.modelName = modelName;
92
	}
93
 
94
	public String getColor() {
95
		return color;
96
	}
97
 
98
	public void setColor(String color) {
99
		this.color = color;
100
	}
101
 
102
	public Integer getQuantity() {
103
		return quantity;
104
	}
105
 
106
	public void setQuantity(Integer quantity) {
107
		this.quantity = quantity;
108
	}
109
 
110
	public Float getTotalPrice() {
111
		return totalPrice;
112
	}
113
 
114
	public void setTotalPrice(Float totalPrice) {
115
		this.totalPrice = totalPrice;
116
	}
117
 
118
	@Override
119
	public String toString() {
120
		return "CustomerOrderDetail [id=" + id + ", status=" + status + ", payMethod=" + payMethod + ", itemId="
121
				+ itemId + ", brand=" + brand + ", modelNumber=" + modelNumber + ", modelName=" + modelName + ", color="
122
				+ color + ", quantity=" + quantity + ", totalPrice=" + totalPrice + ", createdTimeStamp="
123
				+ createdTimeStamp + ", billedTimestamp=" + billedTimestamp + "]";
124
	}
125
 
126
}