Subversion Repositories SmartDukaan

Rev

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

Rev 26311 Rev 26420
Line 42... Line 42...
42
	private String serialNumber;
42
	private String serialNumber;
43
	
43
	
44
	@JsonProperty("Vendor Name")
44
	@JsonProperty("Vendor Name")
45
	private String vendorName;
45
	private String vendorName;
46
	
46
	
-
 
47
	@JsonProperty("Grn On")
-
 
48
	private LocalDateTime grnOn;
-
 
49
	
47
	@JsonProperty("Activation Timestamp")
50
	@JsonProperty("Activation Timestamp")
48
	private LocalDateTime activationTimestamp;
51
	private LocalDateTime activationTimestamp;
49
	@JsonProperty("Activation Added On")
52
	@JsonProperty("Activation Added On")
50
	private LocalDateTime activationAddedOn;
53
	private LocalDateTime activationAddedOn;
51
 
54
 
Line 55... Line 58...
55
 
58
 
56
	public void setVendorName(String vendorName) {
59
	public void setVendorName(String vendorName) {
57
		this.vendorName = vendorName;
60
		this.vendorName = vendorName;
58
	}
61
	}
59
 
62
 
-
 
63
	
-
 
64
	public LocalDateTime getGrnOn() {
-
 
65
		return grnOn;
-
 
66
	}
-
 
67
 
-
 
68
	public void setGrnOn(LocalDateTime grnOn) {
-
 
69
		this.grnOn = grnOn;
-
 
70
	}
-
 
71
 
60
	@JsonProperty("Create Timestamp")
72
	@JsonProperty("Create Timestamp")
61
	private LocalDateTime lastScanned;
73
	private LocalDateTime lastScanned;
62
 
74
 
63
	@Override
75
	@Override
64
	public String getPartnerCode() {
76
	public String getPartnerCode() {
Line 245... Line 257...
245
	@Override
257
	@Override
246
	public String toString() {
258
	public String toString() {
247
		return "PartnerImeiNotSold [retailerId=" + retailerId + ", partnerCode=" + partnerCode + ", storeName="
259
		return "PartnerImeiNotSold [retailerId=" + retailerId + ", partnerCode=" + partnerCode + ", storeName="
248
				+ storeName + ", itemId=" + itemId + ", brand=" + brand + ", modelName=" + modelName + ", modelNumber="
260
				+ storeName + ", itemId=" + itemId + ", brand=" + brand + ", modelName=" + modelName + ", modelNumber="
249
				+ modelNumber + ", color=" + color + ", serialNumber=" + serialNumber + ", vendorName=" + vendorName
261
				+ modelNumber + ", color=" + color + ", serialNumber=" + serialNumber + ", vendorName=" + vendorName
250
				+ ", activationTimestamp=" + activationTimestamp + ", activationAddedOn=" + activationAddedOn
262
				+ ", grnOn=" + grnOn + ", activationTimestamp=" + activationTimestamp + ", activationAddedOn="
251
				+ ", lastScanned=" + lastScanned + "]";
263
				+ activationAddedOn + ", lastScanned=" + lastScanned + "]";
252
	}
264
	}
253
 
265
 
254
}
266
}
255
267