Subversion Repositories SmartDukaan

Rev

Rev 29763 | Rev 29794 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 29763 Rev 29774
Line 13... Line 13...
13
 
13
 
14
	private String middleName;
14
	private String middleName;
15
 
15
 
16
	private String lastName;
16
	private String lastName;
17
 
17
 
-
 
18
	private String fatherName;
-
 
19
 
-
 
20
	public String getFatherName() {
-
 
21
		return fatherName;
-
 
22
	}
-
 
23
 
-
 
24
	public void setFatherName(String fatherName) {
-
 
25
		this.fatherName = fatherName;
-
 
26
	}
-
 
27
 
18
	private LocalDateTime dob;
28
	private LocalDateTime dob;
19
	private Gender gender;
29
	private Gender gender;
20
 
30
 
21
	private MaritalStatus maritalStatus;
31
	private MaritalStatus maritalStatus;
22
	private String email;
32
	private String email;
Line 225... Line 235...
225
	}
235
	}
226
 
236
 
227
	@Override
237
	@Override
228
	public String toString() {
238
	public String toString() {
229
		return "FofoKycModel [id=" + id + ", firstName=" + firstName + ", middleName=" + middleName + ", lastName="
239
		return "FofoKycModel [id=" + id + ", firstName=" + firstName + ", middleName=" + middleName + ", lastName="
230
				+ lastName + ", dob=" + dob + ", gender=" + gender + ", maritalStatus=" + maritalStatus + ", email="
240
				+ lastName + ", fatherName=" + fatherName + ", dob=" + dob + ", gender=" + gender + ", maritalStatus="
231
				+ email + ", mobile=" + mobile + ", pan=" + pan + ", pandocId=" + pandocId + ", poaNo=" + poaNo
241
				+ maritalStatus + ", email=" + email + ", mobile=" + mobile + ", pan=" + pan + ", pandocId=" + pandocId
232
				+ ", poaType=" + poaType + ", paoFrontd=" + paoFrontd + ", paoBackId=" + paoBackId + ", address1="
242
				+ ", poaNo=" + poaNo + ", poaType=" + poaType + ", paoFrontd=" + paoFrontd + ", paoBackId=" + paoBackId
233
				+ address1 + ", address2=" + address2 + ", address3=" + address3 + ", city=" + city + ", state=" + state
243
				+ ", address1=" + address1 + ", address2=" + address2 + ", address3=" + address3 + ", city=" + city
234
				+ ", pincode=" + pincode + ", onboardingId=" + onboardingId + "]";
244
				+ ", state=" + state + ", pincode=" + pincode + ", onboardingId=" + onboardingId + "]";
235
	}
245
	}
236
 
246
 
237
}
247
}