Subversion Repositories SmartDukaan

Rev

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

Rev 22580 Rev 22845
Line 54... Line 54...
54
	private String city;
54
	private String city;
55
	
55
	
56
	@Column(name = "pincode", length = 6)
56
	@Column(name = "pincode", length = 6)
57
	private Integer pinCode;
57
	private Integer pinCode;
58
	
58
	
-
 
59
	private String state;
-
 
60
	
59
	@Convert(converter = LocalDateTimeAttributeConverter.class)
61
	@Convert(converter = LocalDateTimeAttributeConverter.class)
60
	@Column(name="created",updatable=false)
62
	@Column(name="created",updatable=false)
61
	private LocalDateTime createTimestamp;
63
	private LocalDateTime createTimestamp;
62
	
64
	
63
	@Convert(converter = LocalDateTimeAttributeConverter.class)
65
	@Convert(converter = LocalDateTimeAttributeConverter.class)
64
	@Column(name="modified")
66
	@Column(name="modified")
65
	@UpdateTimestamp
67
	@UpdateTimestamp
66
	private LocalDateTime updateTimestamp;
68
	private LocalDateTime updateTimestamp;
67
	
69
	
-
 
70
	@Convert(converter = LocalDateTimeAttributeConverter.class)
-
 
71
	@Column(name="activation_time")
-
 
72
	private LocalDateTime activationTime;
-
 
73
	
-
 
74
	public LocalDateTime getActivationTime() {
-
 
75
		return activationTime;
-
 
76
	}
-
 
77
 
-
 
78
	public void setActivationTime(LocalDateTime activationTime) {
-
 
79
		this.activationTime = activationTime;
-
 
80
	}
-
 
81
 
-
 
82
	public int getStatus() {
-
 
83
		return status;
-
 
84
	}
-
 
85
 
68
	private String username;
86
	private String username;
69
	private String password;
87
	private String password;
70
	private boolean mobile_verified;
88
	private boolean mobile_verified;
71
	private String referral_url;
89
	private String referral_url;
72
	private String referrer;
90
	private String referrer;
Line 236... Line 254...
236
				+ createTimestamp + ", updateTimestamp=" + updateTimestamp + ", username=" + username + ", password="
254
				+ createTimestamp + ", updateTimestamp=" + updateTimestamp + ", username=" + username + ", password="
237
				+ password + ", mobile_verified=" + mobile_verified + ", referral_url=" + referral_url + ", referrer="
255
				+ password + ", mobile_verified=" + mobile_verified + ", referral_url=" + referral_url + ", referrer="
238
				+ referrer + ", group_id=" + group_id + ", status=" + status + ", activated=" + activated  + "]";
256
				+ referrer + ", group_id=" + group_id + ", status=" + status + ", activated=" + activated  + "]";
239
	}
257
	}
240
 
258
 
-
 
259
	public String getState() {
-
 
260
		return state;
-
 
261
	}
-
 
262
 
-
 
263
	public void setState(String state) {
-
 
264
		this.state = state;
-
 
265
	}
-
 
266
 
241
	
267
	
242
	
268
	
243
}
269
}
244
270