Subversion Repositories SmartDukaan

Rev

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