Subversion Repositories SmartDukaan

Rev

Rev 25979 | Rev 26958 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
25979 tejbeer 1
package com.spice.profitmandi.dao.model;
2
 
3
import java.time.LocalDateTime;
4
 
5
import com.spice.profitmandi.dao.enumuration.dtr.LeadStatus;
6
 
7
public class CreateRefferalRequest {
8
 
9
	private String firstName;
10
	private String lastName;
11
	private String city;
12
	private String state;
13
	private String mobile;
14
	private String address;
15
	private LeadStatus status;
16
	private String remark;
17
	private int assignTo;
18
	private String source;
26244 tejbeer 19
	private Boolean colorCheck;
25979 tejbeer 20
 
26244 tejbeer 21
	public Boolean getColorCheck() {
22
		return colorCheck;
23
	}
24
 
25
	public void setColorCheck(Boolean colorCheck) {
26
		this.colorCheck = colorCheck;
27
	}
28
 
25979 tejbeer 29
	public String getSource() {
30
		return source;
31
	}
32
 
33
	public void setSource(String source) {
34
		this.source = source;
35
	}
36
 
37
	public int getAssignTo() {
38
		return assignTo;
39
	}
40
 
41
	public void setAssignTo(int assignTo) {
42
		this.assignTo = assignTo;
43
	}
44
 
45
	private LocalDateTime schelduleTimestamp;
46
 
47
	public LeadStatus getStatus() {
48
		return status;
49
	}
50
 
51
	public void setStatus(LeadStatus status) {
52
		this.status = status;
53
	}
54
 
55
	public String getRemark() {
56
		return remark;
57
	}
58
 
59
	public void setRemark(String remark) {
60
		this.remark = remark;
61
	}
62
 
63
	public LocalDateTime getSchelduleTimestamp() {
64
		return schelduleTimestamp;
65
	}
66
 
67
	public void setSchelduleTimestamp(LocalDateTime schelduleTimestamp) {
68
		this.schelduleTimestamp = schelduleTimestamp;
69
	}
70
 
71
	public String getAddress() {
72
		return address;
73
	}
74
 
75
	public void setAddress(String address) {
76
		this.address = address;
77
	}
78
 
79
	private String reffereeEmail;
80
	private boolean fofoAssociate;
81
 
82
	public String getFirstName() {
83
		return firstName;
84
	}
85
 
86
	public void setFirstName(String firstName) {
87
		this.firstName = firstName;
88
	}
89
 
90
	public String getLastName() {
91
		return lastName;
92
	}
93
 
94
	public void setLastName(String lastName) {
95
		this.lastName = lastName;
96
	}
97
 
98
	public String getCity() {
99
		return city;
100
	}
101
 
102
	public void setCity(String city) {
103
		this.city = city;
104
	}
105
 
106
	public String getState() {
107
		return state;
108
	}
109
 
110
	public void setState(String state) {
111
		this.state = state;
112
	}
113
 
114
	public String getMobile() {
115
		return mobile;
116
	}
117
 
118
	public void setMobile(String mobile) {
119
		this.mobile = mobile;
120
	}
121
 
122
	public String getReffereeEmail() {
123
		return reffereeEmail;
124
	}
125
 
126
	public void setReffereeEmail(String reffereeEmail) {
127
		this.reffereeEmail = reffereeEmail;
128
	}
129
 
130
	public boolean isFofoAssociate() {
131
		return fofoAssociate;
132
	}
133
 
134
	public void setFofoAssociate(boolean fofoAssociate) {
135
		this.fofoAssociate = fofoAssociate;
136
	}
137
 
138
}