Subversion Repositories SmartDukaan

Rev

Rev 26311 | Rev 33189 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 26311 Rev 26420
Line 18... Line 18...
18
 
18
 
19
	@Override
19
	@Override
20
	public String toString() {
20
	public String toString() {
21
		return "GrnPendingDataModel [partnerCode=" + partnerCode + ", storeName=" + storeName + ", retailerId="
21
		return "GrnPendingDataModel [partnerCode=" + partnerCode + ", storeName=" + storeName + ", retailerId="
22
				+ retailerId + ", email=" + email + ", phone=" + phone + ", invoiceNumber=" + invoiceNumber
22
				+ retailerId + ", email=" + email + ", phone=" + phone + ", invoiceNumber=" + invoiceNumber
23
				+ ", lastScanned=" + lastScanned + ", activationTimestamp=" + activationTimestamp
23
				+ ", lastScanned=" + lastScanned + ", grnOn=" + grnOn + ", activationTimestamp=" + activationTimestamp
24
				+ ", activationAddedOn=" + activationAddedOn + ", vendorName=" + vendorName + ", itemId=" + itemId
24
				+ ", activationAddedOn=" + activationAddedOn + ", vendorName=" + vendorName + ", itemId=" + itemId
25
				+ ", brand=" + brand + ", modelName=" + modelName + ", modelNumber=" + modelNumber + ", color=" + color
25
				+ ", brand=" + brand + ", modelName=" + modelName + ", modelNumber=" + modelNumber + ", color=" + color
26
				+ ", unitPrice=" + unitPrice + ", serialNumber=" + serialNumber + "]";
26
				+ ", unitPrice=" + unitPrice + ", serialNumber=" + serialNumber + "]";
27
	}
27
	}
28
 
28
 
Line 45... Line 45...
45
	@JsonProperty("Invoice Number")
45
	@JsonProperty("Invoice Number")
46
	private String invoiceNumber;
46
	private String invoiceNumber;
47
	@JsonProperty("Billing Timestamp")
47
	@JsonProperty("Billing Timestamp")
48
	private LocalDateTime lastScanned;
48
	private LocalDateTime lastScanned;
49
	
49
	
-
 
50
	@JsonProperty("Grn On")
-
 
51
	private LocalDateTime grnOn;
-
 
52
	
50
	@JsonProperty("Activation Timestamp")
53
	@JsonProperty("Activation Timestamp")
51
	private LocalDateTime activationTimestamp;
54
	private LocalDateTime activationTimestamp;
52
	@JsonProperty("Activation Added On")
55
	@JsonProperty("Activation Added On")
53
	private LocalDateTime activationAddedOn;
56
	private LocalDateTime activationAddedOn;
54
 
57
 
Line 97... Line 100...
97
 
100
 
98
	@Override
101
	@Override
99
	public String getStoreName() {
102
	public String getStoreName() {
100
		return storeName;
103
		return storeName;
101
	}
104
	}
-
 
105
	
-
 
106
	
-
 
107
 
-
 
108
	public LocalDateTime getGrnOn() {
-
 
109
		return grnOn;
-
 
110
	}
-
 
111
 
-
 
112
	public void setGrnOn(LocalDateTime grnOn) {
-
 
113
		this.grnOn = grnOn;
-
 
114
	}
102
 
115
 
103
	public void setStoreName(String storeName) {
116
	public void setStoreName(String storeName) {
104
		this.storeName = storeName;
117
		this.storeName = storeName;
105
	}
118
	}
106
 
119