Subversion Repositories SmartDukaan

Rev

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

Rev 25903 Rev 25906
Line 34... Line 34...
34
 
34
 
35
	public void setPartnerName(String partnerName) {
35
	public void setPartnerName(String partnerName) {
36
		this.partnerName = partnerName;
36
		this.partnerName = partnerName;
37
	}
37
	}
38
 
38
 
-
 
39
	@Column(name = "schedule_timestamp")
-
 
40
	private LocalDateTime schelduleTimestamp;
-
 
41
 
-
 
42
	public LocalDateTime getSchelduleTimestamp() {
-
 
43
		return schelduleTimestamp;
-
 
44
	}
-
 
45
 
-
 
46
	public void setSchelduleTimestamp(LocalDateTime schelduleTimestamp) {
-
 
47
		this.schelduleTimestamp = schelduleTimestamp;
-
 
48
	}
-
 
49
 
39
	@Column(name = "agenda")
50
	@Column(name = "agenda")
40
	private String agenda;
51
	private String agenda;
41
 
52
 
42
	@Column(name = "partner_remark")
53
	@Column(name = "partner_remark")
43
	private String partnerRemark;
54
	private String partnerRemark;
Line 273... Line 284...
273
		this.franchiseActivityId = franchiseActivityId;
284
		this.franchiseActivityId = franchiseActivityId;
274
	}
285
	}
275
 
286
 
276
	@Override
287
	@Override
277
	public String toString() {
288
	public String toString() {
278
		return "FranchiseeVisit [id=" + id + ", fofoId=" + fofoId + ", partnerName=" + partnerName + ", agenda="
289
		return "FranchiseeVisit [id=" + id + ", fofoId=" + fofoId + ", partnerName=" + partnerName
-
 
290
				+ ", schelduleTimestamp=" + schelduleTimestamp + ", agenda=" + agenda + ", partnerRemark="
279
				+ agenda + ", partnerRemark=" + partnerRemark + ", outsideVisibity=" + outsideVisibity
291
				+ partnerRemark + ", outsideVisibity=" + outsideVisibity + ", instoreVisibility=" + instoreVisibility
-
 
292
				+ ", outsideStock=" + outsideStock + ", systemKnowledge=" + systemKnowledge + ", workingDevice="
-
 
293
				+ workingDevice + ", workingPrinter=" + workingPrinter + ", carryBags=" + carryBags
-
 
294
				+ ", smartdukaanTshirt=" + smartdukaanTshirt + ", latestDummies=" + latestDummies + ", investment="
-
 
295
				+ investment + ", mtd=" + mtd + ", status=" + status + ", hygiene=" + hygiene + ", createdTimestamp="
-
 
296
				+ createdTimestamp + ", updatedTimestamp=" + updatedTimestamp + ", franchiseActivityId="
-
 
297
				+ franchiseActivityId + ", createdBy=" + createdBy + ", authId=" + authId + ", getPartnerName()="
-
 
298
				+ getPartnerName() + ", getSchelduleTimestamp()=" + getSchelduleTimestamp() + ", getStatus()="
-
 
299
				+ getStatus() + ", getCreatedBy()=" + getCreatedBy() + ", getAuthId()=" + getAuthId() + ", getId()="
-
 
300
				+ getId() + ", getFofoId()=" + getFofoId() + ", getAgenda()=" + getAgenda() + ", getPartnerRemark()="
-
 
301
				+ getPartnerRemark() + ", getOutsideVisibity()=" + getOutsideVisibity() + ", getInstoreVisibility()="
280
				+ ", instoreVisibility=" + instoreVisibility + ", outsideStock=" + outsideStock + ", systemKnowledge="
302
				+ getInstoreVisibility() + ", getOutsideStock()=" + getOutsideStock() + ", getSystemKnowledge()="
281
				+ systemKnowledge + ", workingDevice=" + workingDevice + ", workingPrinter=" + workingPrinter
303
				+ getSystemKnowledge() + ", getWorkingDevice()=" + getWorkingDevice() + ", getWorkingPrinter()="
-
 
304
				+ getWorkingPrinter() + ", getCarryBags()=" + getCarryBags() + ", getSmartdukaanTshirt()="
282
				+ ", carryBags=" + carryBags + ", smartdukaanTshirt=" + smartdukaanTshirt + ", latestDummies="
305
				+ getSmartdukaanTshirt() + ", getLatestDummies()=" + getLatestDummies() + ", getInvestment()="
283
				+ latestDummies + ", investment=" + investment + ", mtd=" + mtd + ", status=" + status + ", hygiene="
306
				+ getInvestment() + ", getMtd()=" + getMtd() + ", getHygiene()=" + getHygiene()
284
				+ hygiene + ", createdTimestamp=" + createdTimestamp + ", updatedTimestamp=" + updatedTimestamp
307
				+ ", getCreatedTimestamp()=" + getCreatedTimestamp() + ", getUpdatedTimestamp()="
285
				+ ", franchiseActivityId=" + franchiseActivityId + ", createdBy=" + createdBy + ", authId=" + authId
308
				+ getUpdatedTimestamp() + ", getFranchiseActivityId()=" + getFranchiseActivityId() + ", getClass()="
286
				+ "]";
309
				+ getClass() + ", hashCode()=" + hashCode() + ", toString()=" + super.toString() + "]";
287
	}
310
	}
288
 
311
 
289
}
312
}