Subversion Repositories SmartDukaan

Rev

Rev 27421 | Rev 27445 | Go to most recent revision | Details | Compare with Previous | 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;
27422 tejbeer 7
	public double longitude;
8
	public double latitude;
27421 tejbeer 9
 
27422 tejbeer 10
	public double getLongitude() {
11
		return longitude;
12
	}
13
 
14
	public void setLongitude(double longitude) {
15
		this.longitude = longitude;
16
	}
17
 
18
	public double getLatitude() {
19
		return latitude;
20
	}
21
 
22
	public void setLatitude(double latitude) {
23
		this.latitude = latitude;
24
	}
25
 
27421 tejbeer 26
	public boolean isPunchIn() {
27
		return punchIn;
28
	}
29
 
30
	public void setPunchIn(boolean punchIn) {
31
		this.punchIn = punchIn;
32
	}
33
 
34
	public double getDistance() {
35
		return distance;
36
	}
37
 
38
	public void setDistance(double distance) {
39
		this.distance = distance;
40
	}
41
 
42
}