Subversion Repositories SmartDukaan

Rev

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