| Line 26... |
Line 26... |
| 26 |
private String firstName;
|
26 |
private String firstName;
|
| 27 |
|
27 |
|
| 28 |
@Column(name = "source")
|
28 |
@Column(name = "source")
|
| 29 |
private String source;
|
29 |
private String source;
|
| 30 |
|
30 |
|
| - |
|
31 |
@Column(name = "color")
|
| - |
|
32 |
private String color;
|
| - |
|
33 |
|
| - |
|
34 |
public String getColor() {
|
| - |
|
35 |
return color;
|
| - |
|
36 |
}
|
| - |
|
37 |
|
| - |
|
38 |
public void setColor(String color) {
|
| - |
|
39 |
this.color = color;
|
| - |
|
40 |
}
|
| - |
|
41 |
|
| 31 |
public String getSource() {
|
42 |
public String getSource() {
|
| 32 |
return source;
|
43 |
return source;
|
| 33 |
}
|
44 |
}
|
| 34 |
|
45 |
|
| 35 |
public void setSource(String source) {
|
46 |
public void setSource(String source) {
|
| Line 68... |
Line 79... |
| 68 |
return authId;
|
79 |
return authId;
|
| 69 |
}
|
80 |
}
|
| 70 |
|
81 |
|
| 71 |
@Transient
|
82 |
@Transient
|
| 72 |
private LeadActivity leadActivity;
|
83 |
private LeadActivity leadActivity;
|
| 73 |
|
84 |
|
| 74 |
public LeadActivity getLeadActivity() {
|
85 |
public LeadActivity getLeadActivity() {
|
| 75 |
return leadActivity;
|
86 |
return leadActivity;
|
| 76 |
}
|
87 |
}
|
| 77 |
|
88 |
|
| 78 |
public void setLeadActivity(LeadActivity leadActivity) {
|
89 |
public void setLeadActivity(LeadActivity leadActivity) {
|
| Line 185... |
Line 196... |
| 185 |
this.updatedTimestamp = updatedTimestamp;
|
196 |
this.updatedTimestamp = updatedTimestamp;
|
| 186 |
}
|
197 |
}
|
| 187 |
|
198 |
|
| 188 |
@Override
|
199 |
@Override
|
| 189 |
public String toString() {
|
200 |
public String toString() {
|
| 190 |
return "Lead [id=" + id + ", firstName=" + firstName + ", source=" + source + ", lastName=" + lastName
|
201 |
return "Lead [id=" + id + ", firstName=" + firstName + ", source=" + source + ", color=" + color + ", lastName="
|
| 191 |
+ ", leadMobile=" + leadMobile + ", createdBy=" + createdBy + ", authId=" + authId + ", leadActivity="
|
202 |
+ lastName + ", leadMobile=" + leadMobile + ", createdBy=" + createdBy + ", authId=" + authId
|
| 192 |
+ leadActivity + ", address=" + address + ", city=" + city + ", state=" + state + ", status=" + status
|
203 |
+ ", leadActivity=" + leadActivity + ", address=" + address + ", city=" + city + ", state=" + state
|
| 193 |
+ ", assignTo=" + assignTo + ", createdTimestamp=" + createdTimestamp + ", updatedTimestamp="
|
204 |
+ ", status=" + status + ", assignTo=" + assignTo + ", createdTimestamp=" + createdTimestamp
|
| 194 |
+ updatedTimestamp + ", getSource()=" + getSource() + ", getFirstName()=" + getFirstName()
|
205 |
+ ", updatedTimestamp=" + updatedTimestamp + ", getColor()=" + getColor() + ", getSource()="
|
| 195 |
+ ", getLastName()=" + getLastName() + ", getAuthId()=" + getAuthId() + ", getLeadActivity()="
|
206 |
+ getSource() + ", getFirstName()=" + getFirstName() + ", getLastName()=" + getLastName()
|
| 196 |
+ getLeadActivity() + ", getAssignTo()=" + getAssignTo() + ", getId()=" + getId() + ", getLeadMobile()="
|
207 |
+ ", getAuthId()=" + getAuthId() + ", getLeadActivity()=" + getLeadActivity() + ", getAssignTo()="
|
| 197 |
+ getLeadMobile() + ", getCreatedBy()=" + getCreatedBy() + ", getAddress()=" + getAddress()
|
208 |
+ getAssignTo() + ", getId()=" + getId() + ", getLeadMobile()=" + getLeadMobile() + ", getCreatedBy()="
|
| 198 |
+ ", getCity()=" + getCity() + ", getState()=" + getState() + ", getStatus()=" + getStatus()
|
209 |
+ getCreatedBy() + ", getAddress()=" + getAddress() + ", getCity()=" + getCity() + ", getState()="
|
| 199 |
+ ", getCreatedTimestamp()=" + getCreatedTimestamp() + ", getUpdatedTimestamp()="
|
210 |
+ getState() + ", getStatus()=" + getStatus() + ", getCreatedTimestamp()=" + getCreatedTimestamp()
|
| 200 |
+ getUpdatedTimestamp() + ", getClass()=" + getClass() + ", hashCode()=" + hashCode() + ", toString()="
|
211 |
+ ", getUpdatedTimestamp()=" + getUpdatedTimestamp() + ", getClass()=" + getClass() + ", hashCode()="
|
| 201 |
+ super.toString() + "]";
|
212 |
+ hashCode() + ", toString()=" + super.toString() + "]";
|
| 202 |
}
|
213 |
}
|
| 203 |
|
214 |
|
| 204 |
}
|
215 |
}
|