Subversion Repositories SmartDukaan

Rev

Rev 27445 | Rev 27496 | 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;
27491 tejbeer 12
	public String totalPunchHour;
27421 tejbeer 13
 
27491 tejbeer 14
	public String getTotalPunchHour() {
15
		return totalPunchHour;
16
	}
17
 
18
	public void setTotalPunchHour(String totalPunchHour) {
19
		this.totalPunchHour = totalPunchHour;
20
	}
21
 
27422 tejbeer 22
	public double getLongitude() {
23
		return longitude;
24
	}
25
 
27445 tejbeer 26
	public long getHours() {
27
		return hours;
28
	}
29
 
30
	public void setHours(long hours) {
31
		this.hours = hours;
32
	}
33
 
34
	public long getMinutes() {
35
		return minutes;
36
	}
37
 
38
	public void setMinutes(long minutes) {
39
		this.minutes = minutes;
40
	}
41
 
42
	public long getSeconds() {
43
		return seconds;
44
	}
45
 
46
	public void setSeconds(long seconds) {
47
		this.seconds = seconds;
48
	}
49
 
27422 tejbeer 50
	public void setLongitude(double longitude) {
51
		this.longitude = longitude;
52
	}
53
 
54
	public double getLatitude() {
55
		return latitude;
56
	}
57
 
58
	public void setLatitude(double latitude) {
59
		this.latitude = latitude;
60
	}
61
 
27421 tejbeer 62
	public boolean isPunchIn() {
63
		return punchIn;
64
	}
65
 
66
	public void setPunchIn(boolean punchIn) {
67
		this.punchIn = punchIn;
68
	}
69
 
70
	public double getDistance() {
71
		return distance;
72
	}
73
 
74
	public void setDistance(double distance) {
75
		this.distance = distance;
76
	}
77
 
78
}