Subversion Repositories SmartDukaan

Rev

Rev 27496 | 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;
27445 tejbeer 9
	public long hours;
10
	public long minutes;
11
	public long seconds;
27496 tejbeer 12
	public long punchHours;
13
	public long punchMinutes;
14
	public long punchSeconds;
27498 tejbeer 15
	public String deviceStatus;
27421 tejbeer 16
 
27498 tejbeer 17
	public String getDeviceStatus() {
18
		return deviceStatus;
19
	}
20
 
21
	public void setDeviceStatus(String deviceStatus) {
22
		this.deviceStatus = deviceStatus;
23
	}
24
 
27496 tejbeer 25
	public long getPunchHours() {
26
		return punchHours;
27491 tejbeer 27
	}
28
 
27496 tejbeer 29
	public void setPunchHours(long punchHours) {
30
		this.punchHours = punchHours;
27491 tejbeer 31
	}
32
 
27496 tejbeer 33
	public long getPunchMinutes() {
34
		return punchMinutes;
35
	}
36
 
37
	public void setPunchMinutes(long punchMinutes) {
38
		this.punchMinutes = punchMinutes;
39
	}
40
 
41
	public long getPunchSeconds() {
42
		return punchSeconds;
43
	}
44
 
45
	public void setPunchSeconds(long punchSeconds) {
46
		this.punchSeconds = punchSeconds;
47
	}
48
 
27422 tejbeer 49
	public double getLongitude() {
50
		return longitude;
51
	}
52
 
27445 tejbeer 53
	public long getHours() {
54
		return hours;
55
	}
56
 
57
	public void setHours(long hours) {
58
		this.hours = hours;
59
	}
60
 
61
	public long getMinutes() {
62
		return minutes;
63
	}
64
 
65
	public void setMinutes(long minutes) {
66
		this.minutes = minutes;
67
	}
68
 
69
	public long getSeconds() {
70
		return seconds;
71
	}
72
 
73
	public void setSeconds(long seconds) {
74
		this.seconds = seconds;
75
	}
76
 
27422 tejbeer 77
	public void setLongitude(double longitude) {
78
		this.longitude = longitude;
79
	}
80
 
81
	public double getLatitude() {
82
		return latitude;
83
	}
84
 
85
	public void setLatitude(double latitude) {
86
		this.latitude = latitude;
87
	}
88
 
27421 tejbeer 89
	public boolean isPunchIn() {
90
		return punchIn;
91
	}
92
 
93
	public void setPunchIn(boolean punchIn) {
94
		this.punchIn = punchIn;
95
	}
96
 
97
	public double getDistance() {
98
		return distance;
99
	}
100
 
101
	public void setDistance(double distance) {
102
		this.distance = distance;
103
	}
104
 
105
}