Subversion Repositories SmartDukaan

Rev

Rev 27422 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
27421 tejbeer 1
package com.spice.profitmandi.dao.model;
2
 
3
public class EmployeeAttendanceModel {
4
 
5
	public boolean punchIn;
6
	public double distance;
7
 
8
	public boolean isPunchIn() {
9
		return punchIn;
10
	}
11
 
12
	public void setPunchIn(boolean punchIn) {
13
		this.punchIn = punchIn;
14
	}
15
 
16
	public double getDistance() {
17
		return distance;
18
	}
19
 
20
	public void setDistance(double distance) {
21
		this.distance = distance;
22
	}
23
 
24
}