Subversion Repositories SmartDukaan

Rev

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