Subversion Repositories SmartDukaan

Rev

Rev 28200 | Rev 32465 | 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
 
31249 tejbeer 5
import com.spice.profitmandi.dao.enumuration.dtr.CommunicationType;
25979 tejbeer 6
import com.spice.profitmandi.dao.enumuration.dtr.LeadStatus;
7
 
8
public class CreateRefferalRequest {
9
 
10
	private String firstName;
11
	private String lastName;
12
	private String city;
13
	private String state;
14
	private String mobile;
15
	private String address;
16
	private LeadStatus status;
17
	private String remark;
18
	private int assignTo;
19
	private String source;
26244 tejbeer 20
	private Boolean colorCheck;
28200 tejbeer 21
	private String reason;
31249 tejbeer 22
	private CommunicationType communicationType;
26958 tejbeer 23
	private LocalDateTime closureTimestamp;
24
 
28200 tejbeer 25
	public String getReason() {
26
		return reason;
27
	}
28
 
29
	public void setReason(String reason) {
30
		this.reason = reason;
31
	}
32
 
31249 tejbeer 33
	public CommunicationType getCommunicationType() {
34
		return communicationType;
35
	}
36
 
37
	public void setCommunicationType(CommunicationType communicationType) {
38
		this.communicationType = communicationType;
39
	}
40
 
26958 tejbeer 41
	public LocalDateTime getClosureTimestamp() {
42
		return closureTimestamp;
43
	}
44
 
45
	public void setClosureTimestamp(LocalDateTime closureTimestamp) {
46
		this.closureTimestamp = closureTimestamp;
47
	}
48
 
26244 tejbeer 49
	public Boolean getColorCheck() {
50
		return colorCheck;
51
	}
52
 
53
	public void setColorCheck(Boolean colorCheck) {
54
		this.colorCheck = colorCheck;
55
	}
56
 
25979 tejbeer 57
	public String getSource() {
58
		return source;
59
	}
60
 
61
	public void setSource(String source) {
62
		this.source = source;
63
	}
64
 
65
	public int getAssignTo() {
66
		return assignTo;
67
	}
68
 
69
	public void setAssignTo(int assignTo) {
70
		this.assignTo = assignTo;
71
	}
72
 
73
	private LocalDateTime schelduleTimestamp;
74
 
75
	public LeadStatus getStatus() {
76
		return status;
77
	}
78
 
79
	public void setStatus(LeadStatus status) {
80
		this.status = status;
81
	}
82
 
83
	public String getRemark() {
84
		return remark;
85
	}
86
 
87
	public void setRemark(String remark) {
88
		this.remark = remark;
89
	}
90
 
91
	public LocalDateTime getSchelduleTimestamp() {
92
		return schelduleTimestamp;
93
	}
94
 
95
	public void setSchelduleTimestamp(LocalDateTime schelduleTimestamp) {
96
		this.schelduleTimestamp = schelduleTimestamp;
97
	}
98
 
99
	public String getAddress() {
100
		return address;
101
	}
102
 
103
	public void setAddress(String address) {
104
		this.address = address;
105
	}
106
 
107
	private String reffereeEmail;
108
	private boolean fofoAssociate;
109
 
110
	public String getFirstName() {
111
		return firstName;
112
	}
113
 
114
	public void setFirstName(String firstName) {
115
		this.firstName = firstName;
116
	}
117
 
118
	public String getLastName() {
119
		return lastName;
120
	}
121
 
122
	public void setLastName(String lastName) {
123
		this.lastName = lastName;
124
	}
125
 
126
	public String getCity() {
127
		return city;
128
	}
129
 
130
	public void setCity(String city) {
131
		this.city = city;
132
	}
133
 
134
	public String getState() {
135
		return state;
136
	}
137
 
138
	public void setState(String state) {
139
		this.state = state;
140
	}
141
 
142
	public String getMobile() {
143
		return mobile;
144
	}
145
 
146
	public void setMobile(String mobile) {
147
		this.mobile = mobile;
148
	}
149
 
150
	public String getReffereeEmail() {
151
		return reffereeEmail;
152
	}
153
 
154
	public void setReffereeEmail(String reffereeEmail) {
155
		this.reffereeEmail = reffereeEmail;
156
	}
157
 
158
	public boolean isFofoAssociate() {
159
		return fofoAssociate;
160
	}
161
 
162
	public void setFofoAssociate(boolean fofoAssociate) {
163
		this.fofoAssociate = fofoAssociate;
164
	}
165
 
166
}