-
Notifications
You must be signed in to change notification settings - Fork 1
/
Leads.java
64 lines (47 loc) · 1018 Bytes
/
Leads.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package com.tadigital.entity;
public class Leads {
private String ID;
private String FirstName;
private String LastName;
private String Country;
private String Email;
private String sfdc;
public Leads() {
}
public String getSFDC() {
return this.sfdc;
}
public void setSFDC(String sfdc) {
this.sfdc = sfdc;
}
public String getID() {
return this.ID;
}
public void setID(String iD) {
this.ID = iD;
}
public String getFirstName() {
return this.FirstName;
}
public void setFirstName(String firstName) {
this.FirstName = firstName;
}
public String getLastName() {
return this.LastName;
}
public void setLastName(String lastName) {
this.LastName = lastName;
}
public String getCountry() {
return this.Country;
}
public void setCountry(String country) {
this.Country = country;
}
public String getEmail() {
return this.Email;
}
public void setEmail(String email) {
this.Email = email;
}
}