Subversion Repositories SmartDukaan

Rev

Rev 34882 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 34882 Rev 34917
Line 15... Line 15...
15
	private String email;
15
	private String email;
16
	@JsonProperty(required = false)
16
	@JsonProperty(required = false)
17
	private String oldPassword;
17
	private String oldPassword;
18
	@JsonProperty(required = false)
18
	@JsonProperty(required = false)
19
	private boolean isSmartSeller;
19
	private boolean isSmartSeller;
-
 
20
	@JsonProperty(required = false)
-
 
21
	private String referralCode;
20
 
22
 
21
	public String getMobile() {
23
	public String getMobile() {
22
		return mobile;
24
		return mobile;
23
	}
25
	}
24
 
26
 
Line 71... Line 73...
71
 
73
 
72
	public void setIsSmartSeller(boolean isSmartSeller) {
74
	public void setIsSmartSeller(boolean isSmartSeller) {
73
		this.isSmartSeller = isSmartSeller;
75
		this.isSmartSeller = isSmartSeller;
74
	}
76
	}
75
 
77
 
-
 
78
    public String getReferralCode() {
-
 
79
        return referralCode;
-
 
80
    }
-
 
81
 
-
 
82
    public void setReferralCode(String referralCode) {
-
 
83
        this.referralCode = referralCode;
-
 
84
    }
-
 
85
 
76
	@Override
86
    @Override
77
	public String toString() {
87
	public String toString() {
78
		return "UserModel{" +
88
		return "UserModel{" +
79
				"mobile='" + mobile + '\'' +
89
				"mobile='" + mobile + '\'' +
80
				", password='" + password + '\'' +
90
				", password='" + password + '\'' +
81
				", firstName='" + firstName + '\'' +
91
				", firstName='" + firstName + '\'' +
82
				", lastName='" + lastName + '\'' +
92
				", lastName='" + lastName + '\'' +
83
				", email='" + email + '\'' +
93
				", email='" + email + '\'' +
84
				", oldPassword='" + oldPassword + '\'' +
94
				", oldPassword='" + oldPassword + '\'' +
85
				", isSmartSeller='" + isSmartSeller + '\'' +
95
				", isSmartSeller='" + isSmartSeller + '\'' +
-
 
96
				", referralCode='" + referralCode + '\'' +
86
				'}';
97
				'}';
87
	}
98
	}
88
}
99
}