Subversion Repositories SmartDukaan

Rev

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

Rev 28825 Rev 29497
Line 162... Line 162...
162
 
162
 
163
	@Column
163
	@Column
164
	private boolean active = true;
164
	private boolean active = true;
165
 
165
 
166
	@Transient
166
	@Transient
167
	private Address userAddress;
167
	private String pan;
168
 
168
 
-
 
169
	@Transient
-
 
170
	private Address userAddress;
-
 
171
	
169
	@Column(name = "internal")
172
	@Column(name = "internal")
170
	private boolean internal;
173
	private boolean internal;
171
 
174
 
172
	@Column(name = "bags_last_credited")
175
	@Column(name = "bags_last_credited")
173
	private LocalDateTime bagsLastCredited;
176
	private LocalDateTime bagsLastCredited;
Line 212... Line 215...
212
	}
215
	}
213
 
216
 
214
	@Column(name = "grace_count")
217
	@Column(name = "grace_count")
215
	private int graceCount;
218
	private int graceCount;
216
 
219
 
-
 
220
	
-
 
221
	public String getPan() {
-
 
222
		return pan;
-
 
223
	}
-
 
224
 
-
 
225
	public void setPan(String pan) {
-
 
226
		this.pan = pan;
-
 
227
	}
-
 
228
 
217
	public int getGraceCount() {
229
	public int getGraceCount() {
218
		return graceCount;
230
		return graceCount;
219
	}
231
	}
220
 
232
 
221
	public boolean isActive() {
233
	public boolean isActive() {