Subversion Repositories SmartDukaan

Rev

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

Rev 29763 Rev 29774
Line 31... Line 31...
31
	private String middleName;
31
	private String middleName;
32
 
32
 
33
	@Column(name = "last_name")
33
	@Column(name = "last_name")
34
	private String lastName;
34
	private String lastName;
35
 
35
 
-
 
36
	@Column(name = "father_name")
-
 
37
	private String fatherName;
-
 
38
 
36
	@Column(name = "mobile")
39
	@Column(name = "mobile")
37
	private String mobile;
40
	private String mobile;
38
 
41
 
39
	@Column(name = "pan")
42
	@Column(name = "pan")
40
	private String pan;
43
	private String pan;
Line 67... Line 70...
67
 
70
 
68
	@Column(name = "marital_status")
71
	@Column(name = "marital_status")
69
	@Enumerated(EnumType.STRING)
72
	@Enumerated(EnumType.STRING)
70
	private MaritalStatus maritalStatus;
73
	private MaritalStatus maritalStatus;
71
 
74
 
72
	public void setGender(Gender gender) {
-
 
73
		this.gender = gender;
-
 
74
	}
-
 
75
 
-
 
76
	public Gender getGender() {
-
 
77
		return gender;
-
 
78
	}
-
 
79
 
-
 
80
	public AddressProofType getPoaType() {
-
 
81
		return poaType;
-
 
82
	}
-
 
83
 
-
 
84
	public MaritalStatus getMaritalStatus() {
-
 
85
		return maritalStatus;
-
 
86
	}
-
 
87
 
-
 
88
	public int getOnboardingId() {
-
 
89
		return onboardingId;
-
 
90
	}
-
 
91
 
-
 
92
	public void setPoaType(AddressProofType poaType) {
-
 
93
		this.poaType = poaType;
-
 
94
	}
-
 
95
 
-
 
96
	public void setMaritalStatus(MaritalStatus maritalStatus) {
-
 
97
		this.maritalStatus = maritalStatus;
-
 
98
	}
-
 
99
 
-
 
100
	public void setOnboardingId(int onboardingId) {
-
 
101
		this.onboardingId = onboardingId;
-
 
102
	}
-
 
103
 
-
 
104
	@Column(name = "address1")
75
	@Column(name = "address1")
105
	private String address1;
76
	private String address1;
106
 
77
 
107
	@Column(name = "address2")
78
	@Column(name = "address2")
108
	private String address2;
79
	private String address2;
Line 264... Line 235...
264
 
235
 
265
	public void setMobile(String mobile) {
236
	public void setMobile(String mobile) {
266
		this.mobile = mobile;
237
		this.mobile = mobile;
267
	}
238
	}
268
 
239
 
-
 
240
	public String getFatherName() {
-
 
241
		return fatherName;
-
 
242
	}
-
 
243
 
-
 
244
	public void setFatherName(String fatherName) {
-
 
245
		this.fatherName = fatherName;
-
 
246
	}
-
 
247
 
-
 
248
	public void setGender(Gender gender) {
-
 
249
		this.gender = gender;
-
 
250
	}
-
 
251
 
-
 
252
	public Gender getGender() {
-
 
253
		return gender;
-
 
254
	}
-
 
255
 
-
 
256
	public AddressProofType getPoaType() {
-
 
257
		return poaType;
-
 
258
	}
-
 
259
 
-
 
260
	public MaritalStatus getMaritalStatus() {
-
 
261
		return maritalStatus;
-
 
262
	}
-
 
263
 
-
 
264
	public int getOnboardingId() {
-
 
265
		return onboardingId;
-
 
266
	}
-
 
267
 
-
 
268
	public void setPoaType(AddressProofType poaType) {
-
 
269
		this.poaType = poaType;
-
 
270
	}
-
 
271
 
-
 
272
	public void setMaritalStatus(MaritalStatus maritalStatus) {
-
 
273
		this.maritalStatus = maritalStatus;
-
 
274
	}
-
 
275
 
-
 
276
	public void setOnboardingId(int onboardingId) {
-
 
277
		this.onboardingId = onboardingId;
-
 
278
	}
-
 
279
 
269
	@Override
280
	@Override
270
	public String toString() {
281
	public String toString() {
271
		return "FofoKyc [id=" + id + ", firstName=" + firstName + ", middleName=" + middleName + ", lastName="
282
		return "FofoKyc [id=" + id + ", firstName=" + firstName + ", middleName=" + middleName + ", lastName="
272
				+ lastName + ", mobile=" + mobile + ", pan=" + pan + ", dob=" + dob + ", panDoc=" + panDoc + ", gender="
283
				+ lastName + ", fatherName=" + fatherName + ", mobile=" + mobile + ", pan=" + pan + ", dob=" + dob
273
				+ gender + ", email=" + email + ", poaNo=" + poaNo + ", poaType=" + poaType + ", poaFront=" + poaFront
284
				+ ", panDoc=" + panDoc + ", gender=" + gender + ", email=" + email + ", poaNo=" + poaNo + ", poaType="
274
				+ ", poaBack=" + poaBack + ", maritalStatus=" + maritalStatus + ", address1=" + address1 + ", address2="
285
				+ poaType + ", poaFront=" + poaFront + ", poaBack=" + poaBack + ", maritalStatus=" + maritalStatus
275
				+ address2 + ", address3=" + address3 + ", city=" + city + ", state=" + state + ", pincode=" + pincode
286
				+ ", address1=" + address1 + ", address2=" + address2 + ", address3=" + address3 + ", city=" + city
276
				+ ", onboardingId=" + onboardingId + "]";
287
				+ ", state=" + state + ", pincode=" + pincode + ", onboardingId=" + onboardingId + "]";
277
	}
288
	}
278
 
289
 
279
}
290
}