Subversion Repositories SmartDukaan

Rev

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

Rev 29774 Rev 29794
Line 1... Line 1...
1
package com.spice.profitmandi.common.model;
1
package com.spice.profitmandi.common.model;
2
 
2
 
3
import java.time.LocalDateTime;
3
import java.time.LocalDateTime;
4
 
4
 
-
 
5
import com.spice.profitmandi.common.enumuration.BusinessType;
5
import com.spice.profitmandi.common.services.mandii.AddressProofType;
6
import com.spice.profitmandi.common.services.mandii.AddressProofType;
6
import com.spice.profitmandi.common.services.mandii.Gender;
7
import com.spice.profitmandi.common.services.mandii.Gender;
7
import com.spice.profitmandi.common.services.mandii.MaritalStatus;
8
import com.spice.profitmandi.common.services.mandii.MaritalStatus;
8
 
9
 
9
public class FofoKycModel {
10
public class FofoKycModel {
10
 
11
 
11
	private int id;
12
	private int id;
-
 
13
	private BusinessType businessType;
12
	private String firstName;
14
	private String firstName;
13
 
-
 
14
	private String middleName;
15
	private String middleName;
15
 
-
 
16
	private String lastName;
16
	private String lastName;
17
 
-
 
18
	private String fatherName;
17
	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
 
-
 
28
	private LocalDateTime dob;
18
	private LocalDateTime dob;
29
	private Gender gender;
19
	private Gender gender;
30
 
-
 
31
	private MaritalStatus maritalStatus;
20
	private MaritalStatus maritalStatus;
32
	private String email;
21
	private String email;
33
	private String mobile;
22
	private String mobile;
34
 
-
 
35
	private String pan;
23
	private String pan;
36
 
-
 
37
	private int pandocId;
24
	private int pandocId;
38
 
-
 
39
	private String poaNo;
25
	private String poaNo;
40
 
-
 
41
	private AddressProofType poaType;
26
	private AddressProofType poaType;
42
 
-
 
43
	private int paoFrontd;
27
	private int paoFrontd;
44
 
-
 
45
	private int paoBackId;
28
	private int paoBackId;
46
 
-
 
47
	private String address1;
29
	private String address1;
48
 
-
 
49
	private String address2;
30
	private String address2;
50
 
-
 
51
	private String address3;
31
	private String address3;
52
 
-
 
53
	private String city;
32
	private String city;
54
 
-
 
55
	private String state;
33
	private String state;
56
 
-
 
57
	private String pincode;
34
	private String pincode;
58
 
-
 
59
	private int onboardingId;
35
	private int onboardingId;
60
 
36
 
61
	public int getId() {
37
	public int getId() {
62
		return id;
38
		return id;
63
	}
39
	}
64
 
40
 
65
	public void setId(int id) {
41
	public void setId(int id) {
66
		this.id = id;
42
		this.id = id;
67
	}
43
	}
68
 
44
 
-
 
45
	public String getFatherName() {
-
 
46
		return fatherName;
-
 
47
	}
-
 
48
 
-
 
49
	public void setFatherName(String fatherName) {
-
 
50
		this.fatherName = fatherName;
-
 
51
	}
-
 
52
 
-
 
53
	public BusinessType getBusinessType() {
-
 
54
		return businessType;
-
 
55
	}
-
 
56
 
-
 
57
	public void setBusinessType(BusinessType businessType) {
-
 
58
		this.businessType = businessType;
-
 
59
	}
-
 
60
 
69
	public String getFirstName() {
61
	public String getFirstName() {
70
		return firstName;
62
		return firstName;
71
	}
63
	}
72
 
64
 
73
	public void setFirstName(String firstName) {
65
	public void setFirstName(String firstName) {
Line 234... Line 226...
234
		this.onboardingId = onboardingId;
226
		this.onboardingId = onboardingId;
235
	}
227
	}
236
 
228
 
237
	@Override
229
	@Override
238
	public String toString() {
230
	public String toString() {
239
		return "FofoKycModel [id=" + id + ", firstName=" + firstName + ", middleName=" + middleName + ", lastName="
231
		return "FofoKycModel [id=" + id + ", businessType=" + businessType + ", firstName=" + firstName
240
				+ lastName + ", fatherName=" + fatherName + ", dob=" + dob + ", gender=" + gender + ", maritalStatus="
232
				+ ", middleName=" + middleName + ", lastName=" + lastName + ", fatherName=" + fatherName + ", dob="
-
 
233
				+ dob + ", gender=" + gender + ", maritalStatus=" + maritalStatus + ", email=" + email + ", mobile="
241
				+ maritalStatus + ", email=" + email + ", mobile=" + mobile + ", pan=" + pan + ", pandocId=" + pandocId
234
				+ mobile + ", pan=" + pan + ", pandocId=" + pandocId + ", poaNo=" + poaNo + ", poaType=" + poaType
242
				+ ", poaNo=" + poaNo + ", poaType=" + poaType + ", paoFrontd=" + paoFrontd + ", paoBackId=" + paoBackId
235
				+ ", paoFrontd=" + paoFrontd + ", paoBackId=" + paoBackId + ", address1=" + address1 + ", address2="
243
				+ ", address1=" + address1 + ", address2=" + address2 + ", address3=" + address3 + ", city=" + city
236
				+ address2 + ", address3=" + address3 + ", city=" + city + ", state=" + state + ", pincode=" + pincode
244
				+ ", state=" + state + ", pincode=" + pincode + ", onboardingId=" + onboardingId + "]";
237
				+ ", onboardingId=" + onboardingId + "]";
245
	}
238
	}
246
 
239
 
247
}
240
}