Subversion Repositories SmartDukaan

Rev

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

Rev 31185 Rev 31249
Line 12... Line 12...
12
import javax.persistence.Id;
12
import javax.persistence.Id;
13
import javax.persistence.Table;
13
import javax.persistence.Table;
14
import javax.persistence.Transient;
14
import javax.persistence.Transient;
15
 
15
 
16
import com.spice.profitmandi.dao.enumuration.dtr.FranchiseeVisitStatus;
16
import com.spice.profitmandi.dao.enumuration.dtr.FranchiseeVisitStatus;
-
 
17
import com.spice.profitmandi.dao.enumuration.dtr.VisitStatus;
17
 
18
 
18
@Entity
19
@Entity
19
@Table(name = "user.my_franchisee_visit", schema = "user")
20
@Table(name = "user.my_franchisee_visit", schema = "user")
20
public class FranchiseeVisit {
21
public class FranchiseeVisit {
21
 
22
 
Line 111... Line 112...
111
	private String createdBy;
112
	private String createdBy;
112
 
113
 
113
	@Column(name = "auth_id")
114
	@Column(name = "auth_id")
114
	private int authId;
115
	private int authId;
115
 
116
 
-
 
117
	@Transient
-
 
118
	private VisitStatus visitStatus;
-
 
119
 
-
 
120
	public VisitStatus getVisitStatus() {
-
 
121
		return visitStatus;
-
 
122
	}
-
 
123
 
-
 
124
	public void setVisitStatus(VisitStatus visitStatus) {
-
 
125
		this.visitStatus = visitStatus;
-
 
126
	}
-
 
127
 
116
	public LocalDateTime getScheduleTimestamp() {
128
	public LocalDateTime getScheduleTimestamp() {
117
		return scheduleTimestamp;
129
		return scheduleTimestamp;
118
	}
130
	}
119
 
131
 
120
	public void setScheduleTimestamp(LocalDateTime schelduleTimestamp) {
132
	public void setScheduleTimestamp(LocalDateTime schelduleTimestamp) {
Line 523... Line 535...
523
				+ ", carryBags=" + carryBags + ", smartdukaanTshirt=" + smartdukaanTshirt + ", latestDummies="
535
				+ ", carryBags=" + carryBags + ", smartdukaanTshirt=" + smartdukaanTshirt + ", latestDummies="
524
				+ latestDummies + ", investment=" + investment + ", mtd=" + mtd + ", status=" + status + ", hygiene="
536
				+ latestDummies + ", investment=" + investment + ", mtd=" + mtd + ", status=" + status + ", hygiene="
525
				+ hygiene + ", createdTimestamp=" + createdTimestamp + ", pendingBilling=" + pendingBilling
537
				+ hygiene + ", createdTimestamp=" + createdTimestamp + ", pendingBilling=" + pendingBilling
526
				+ ", informedAboutOnline=" + informedAboutOnline + ", updatedTimestamp=" + updatedTimestamp
538
				+ ", informedAboutOnline=" + informedAboutOnline + ", updatedTimestamp=" + updatedTimestamp
527
				+ ", visitTimestamp=" + visitTimestamp + ", brands=" + brands + ", franchiseActivityId="
539
				+ ", visitTimestamp=" + visitTimestamp + ", brands=" + brands + ", franchiseActivityId="
528
				+ franchiseActivityId + ", createdBy=" + createdBy + ", authId=" + authId + "]";
540
				+ franchiseActivityId + ", createdBy=" + createdBy + ", authId=" + authId + ", visitStatus="
-
 
541
				+ visitStatus + "]";
529
	}
542
	}
530
 
543
 
531
}
544
}