Subversion Repositories SmartDukaan

Rev

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

Rev 29061 Rev 29062
Line 7... Line 7...
7
 
7
 
8
	private int onboardingId;
8
	private int onboardingId;
9
	private String code;
9
	private String code;
10
	private String outletName;
10
	private String outletName;
11
	private String city;
11
	private String city;
-
 
12
	private String status;
12
	private LocalDateTime onboardingTimestamp;
13
	private LocalDateTime onboardingTimestamp;
13
	private LocalDateTime verificationTimestamp;
14
	private LocalDateTime verificationTimestamp;
14
	private LocalDateTime storeCreatedTimestamp;
15
	private LocalDateTime storeCreatedTimestamp;
15
	private LocalDateTime trainingTimestamp;
16
	private LocalDateTime trainingTimestamp;
16
	private LocalDateTime recceTimestamp;
17
	private LocalDateTime recceTimestamp;
Line 29... Line 30...
29
 
30
 
30
	public void setObtm(List<OnBoardingTimelineModel> obtm) {
31
	public void setObtm(List<OnBoardingTimelineModel> obtm) {
31
		this.obtm = obtm;
32
		this.obtm = obtm;
32
	}
33
	}
33
 
34
 
34
	public StoreTimelineModel(int onboardingId, String code, String outletName, String city,
35
	public StoreTimelineModel(int onboardingId, String code, String outletName, String city, String status,
35
			LocalDateTime onboardingTimestamp, LocalDateTime verificationTimestamp, LocalDateTime storeCreatedTimestamp,
36
			LocalDateTime onboardingTimestamp, LocalDateTime verificationTimestamp, LocalDateTime storeCreatedTimestamp,
36
			LocalDateTime trainingTimestamp, LocalDateTime recceTimestamp, LocalDateTime advanceStockTimestamp,
37
			LocalDateTime trainingTimestamp, LocalDateTime recceTimestamp, LocalDateTime advanceStockTimestamp,
37
			LocalDateTime brandingTimestamp, LocalDateTime fullStockTimestamp, LocalDateTime billingTimestamp,
38
			LocalDateTime brandingTimestamp, LocalDateTime fullStockTimestamp, LocalDateTime billingTimestamp,
38
			LocalDateTime inaugrationTimestamp, LocalDateTime finServicesTimestamp, LocalDateTime promoterTimestamp) {
39
			LocalDateTime inaugrationTimestamp, LocalDateTime finServicesTimestamp, LocalDateTime promoterTimestamp) {
39
		super();
40
		super();
40
		this.onboardingId = onboardingId;
41
		this.onboardingId = onboardingId;
41
		this.code = code;
42
		this.code = code;
42
		this.outletName = outletName;
43
		this.outletName = outletName;
43
		this.city = city;
44
		this.city = city;
-
 
45
		this.status = status;
44
		this.onboardingTimestamp = onboardingTimestamp;
46
		this.onboardingTimestamp = onboardingTimestamp;
45
		this.verificationTimestamp = verificationTimestamp;
47
		this.verificationTimestamp = verificationTimestamp;
46
		this.storeCreatedTimestamp = storeCreatedTimestamp;
48
		this.storeCreatedTimestamp = storeCreatedTimestamp;
47
		this.trainingTimestamp = trainingTimestamp;
49
		this.trainingTimestamp = trainingTimestamp;
48
		this.recceTimestamp = recceTimestamp;
50
		this.recceTimestamp = recceTimestamp;
Line 53... Line 55...
53
		this.inaugrationTimestamp = inaugrationTimestamp;
55
		this.inaugrationTimestamp = inaugrationTimestamp;
54
		this.finServicesTimestamp = finServicesTimestamp;
56
		this.finServicesTimestamp = finServicesTimestamp;
55
		this.promoterTimestamp = promoterTimestamp;
57
		this.promoterTimestamp = promoterTimestamp;
56
	}
58
	}
57
 
59
 
-
 
60
	public String getStatus() {
-
 
61
		return status;
-
 
62
	}
-
 
63
 
-
 
64
	public void setStatus(String status) {
-
 
65
		this.status = status;
-
 
66
	}
-
 
67
 
58
	public String getCity() {
68
	public String getCity() {
59
		return city;
69
		return city;
60
	}
70
	}
61
 
71
 
62
	public void setCity(String city) {
72
	public void setCity(String city) {
Line 199... Line 209...
199
		result = prime * result + onboardingId;
209
		result = prime * result + onboardingId;
200
		result = prime * result + ((onboardingTimestamp == null) ? 0 : onboardingTimestamp.hashCode());
210
		result = prime * result + ((onboardingTimestamp == null) ? 0 : onboardingTimestamp.hashCode());
201
		result = prime * result + ((outletName == null) ? 0 : outletName.hashCode());
211
		result = prime * result + ((outletName == null) ? 0 : outletName.hashCode());
202
		result = prime * result + ((promoterTimestamp == null) ? 0 : promoterTimestamp.hashCode());
212
		result = prime * result + ((promoterTimestamp == null) ? 0 : promoterTimestamp.hashCode());
203
		result = prime * result + ((recceTimestamp == null) ? 0 : recceTimestamp.hashCode());
213
		result = prime * result + ((recceTimestamp == null) ? 0 : recceTimestamp.hashCode());
-
 
214
		result = prime * result + ((status == null) ? 0 : status.hashCode());
204
		result = prime * result + ((storeCreatedTimestamp == null) ? 0 : storeCreatedTimestamp.hashCode());
215
		result = prime * result + ((storeCreatedTimestamp == null) ? 0 : storeCreatedTimestamp.hashCode());
205
		result = prime * result + ((trainingTimestamp == null) ? 0 : trainingTimestamp.hashCode());
216
		result = prime * result + ((trainingTimestamp == null) ? 0 : trainingTimestamp.hashCode());
206
		result = prime * result + ((verificationTimestamp == null) ? 0 : verificationTimestamp.hashCode());
217
		result = prime * result + ((verificationTimestamp == null) ? 0 : verificationTimestamp.hashCode());
207
		return result;
218
		return result;
208
	}
219
	}
Line 281... Line 292...
281
		if (recceTimestamp == null) {
292
		if (recceTimestamp == null) {
282
			if (other.recceTimestamp != null)
293
			if (other.recceTimestamp != null)
283
				return false;
294
				return false;
284
		} else if (!recceTimestamp.equals(other.recceTimestamp))
295
		} else if (!recceTimestamp.equals(other.recceTimestamp))
285
			return false;
296
			return false;
-
 
297
		if (status == null) {
-
 
298
			if (other.status != null)
-
 
299
				return false;
-
 
300
		} else if (!status.equals(other.status))
-
 
301
			return false;
286
		if (storeCreatedTimestamp == null) {
302
		if (storeCreatedTimestamp == null) {
287
			if (other.storeCreatedTimestamp != null)
303
			if (other.storeCreatedTimestamp != null)
288
				return false;
304
				return false;
289
		} else if (!storeCreatedTimestamp.equals(other.storeCreatedTimestamp))
305
		} else if (!storeCreatedTimestamp.equals(other.storeCreatedTimestamp))
290
			return false;
306
			return false;