Subversion Repositories SmartDukaan

Rev

Rev 28566 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 28566 Rev 29707
Line 1... Line 1...
1
package com.spice.profitmandi.dao.model;
1
package com.spice.profitmandi.dao.model;
2
 
2
 
3
import java.time.LocalDateTime;
3
import java.time.LocalDateTime;
-
 
4
import java.util.List;
4
 
5
 
-
 
6
import com.spice.profitmandi.dao.entity.catalog.CustomerOffer;
5
import com.spice.profitmandi.dao.enumuration.transaction.OrderStatus;
7
import com.spice.profitmandi.dao.enumuration.transaction.OrderStatus;
6
 
8
 
7
public class CustomerOrderDetail {
9
public class CustomerOrderDetail {
8
 
10
 
9
	private Integer id;
11
	private Integer id;
Line 22... Line 24...
22
	private LocalDateTime billedTimestamp;
24
	private LocalDateTime billedTimestamp;
23
	private Integer fofoOrderItemId;
25
	private Integer fofoOrderItemId;
24
	private Integer fofoOrderId;
26
	private Integer fofoOrderId;
25
	private String invoiceNumber;
27
	private String invoiceNumber;
26
	private LocalDateTime cancelledTimestamp;
28
	private LocalDateTime cancelledTimestamp;
-
 
29
	private String customerName;
-
 
30
	private String customerMobile;
-
 
31
	private String customerCity;
-
 
32
	private String customerState;
-
 
33
	private String customerEmail;
-
 
34
	private List<String> serialNumber;
-
 
35
	private long offerCount;
-
 
36
	private boolean insurance;
-
 
37
 
-
 
38
	public long getOfferCount() {
-
 
39
		return offerCount;
-
 
40
	}
-
 
41
 
-
 
42
	public void setOfferCount(long offerCount) {
-
 
43
		this.offerCount = offerCount;
-
 
44
	}
-
 
45
 
-
 
46
	public boolean isInsurance() {
-
 
47
		return insurance;
-
 
48
	}
-
 
49
 
-
 
50
	public void setInsurance(boolean insurance) {
-
 
51
		this.insurance = insurance;
-
 
52
	}
-
 
53
 
-
 
54
	public String getCustomerEmail() {
-
 
55
		return customerEmail;
-
 
56
	}
-
 
57
 
-
 
58
	public void setCustomerEmail(String customerEmail) {
-
 
59
		this.customerEmail = customerEmail;
-
 
60
	}
-
 
61
 
-
 
62
	public List<String> getSerialNumber() {
-
 
63
		return serialNumber;
-
 
64
	}
-
 
65
 
-
 
66
	public void setSerialNumber(List<String> serialNumber) {
-
 
67
		this.serialNumber = serialNumber;
-
 
68
	}
-
 
69
 
-
 
70
	public String getCustomerName() {
-
 
71
		return customerName;
-
 
72
	}
-
 
73
 
-
 
74
	public void setCustomerName(String customerName) {
-
 
75
		this.customerName = customerName;
-
 
76
	}
-
 
77
 
-
 
78
	public String getCustomerMobile() {
-
 
79
		return customerMobile;
-
 
80
	}
-
 
81
 
-
 
82
	public void setCustomerMobile(String customerMobile) {
-
 
83
		this.customerMobile = customerMobile;
-
 
84
	}
-
 
85
 
-
 
86
	public String getCustomerCity() {
-
 
87
		return customerCity;
-
 
88
	}
-
 
89
 
-
 
90
	public void setCustomerCity(String customerCity) {
-
 
91
		this.customerCity = customerCity;
-
 
92
	}
-
 
93
 
-
 
94
	public String getCustomerState() {
-
 
95
		return customerState;
-
 
96
	}
-
 
97
 
-
 
98
	public void setCustomerState(String customerState) {
-
 
99
		this.customerState = customerState;
-
 
100
	}
27
 
101
 
28
	public LocalDateTime getCancelledTimestamp() {
102
	public LocalDateTime getCancelledTimestamp() {
29
		return cancelledTimestamp;
103
		return cancelledTimestamp;
30
	}
104
	}
31
 
105
 
Line 174... Line 248...
174
		return "CustomerOrderDetail [id=" + id + ", pendingOrderItemId=" + pendingOrderItemId + ", status=" + status
248
		return "CustomerOrderDetail [id=" + id + ", pendingOrderItemId=" + pendingOrderItemId + ", status=" + status
175
				+ ", payMethod=" + payMethod + ", itemId=" + itemId + ", brand=" + brand + ", modelNumber="
249
				+ ", payMethod=" + payMethod + ", itemId=" + itemId + ", brand=" + brand + ", modelNumber="
176
				+ modelNumber + ", modelName=" + modelName + ", color=" + color + ", quantity=" + quantity
250
				+ modelNumber + ", modelName=" + modelName + ", color=" + color + ", quantity=" + quantity
177
				+ ", totalPrice=" + totalPrice + ", imageUrl=" + imageUrl + ", createdTimeStamp=" + createdTimeStamp
251
				+ ", totalPrice=" + totalPrice + ", imageUrl=" + imageUrl + ", createdTimeStamp=" + createdTimeStamp
178
				+ ", billedTimestamp=" + billedTimestamp + ", fofoOrderItemId=" + fofoOrderItemId + ", fofoOrderId="
252
				+ ", billedTimestamp=" + billedTimestamp + ", fofoOrderItemId=" + fofoOrderItemId + ", fofoOrderId="
179
				+ fofoOrderId + ", invoiceNumber=" + invoiceNumber + ", cancelledTimestamp=" + cancelledTimestamp + "]";
253
				+ fofoOrderId + ", invoiceNumber=" + invoiceNumber + ", cancelledTimestamp=" + cancelledTimestamp
-
 
254
				+ ", customerName=" + customerName + ", customerMobile=" + customerMobile + ", customerCity="
-
 
255
				+ customerCity + ", customerState=" + customerState + ", customerEmail=" + customerEmail
-
 
256
				+ ", serialNumber=" + serialNumber + ", offerCount=" + offerCount + ", insurance=" + insurance + "]";
180
	}
257
	}
181
 
258
 
182
}
259
}