Subversion Repositories SmartDukaan

Rev

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