Subversion Repositories SmartDukaan

Rev

Rev 35954 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 35954 Rev 36098
Line 1... Line 1...
1
package com.spice.profitmandi.dao.model;
1
package com.spice.profitmandi.dao.model;
2
 
2
 
3
public class BreakTimeDetailModel {
3
public class BreakTimeDetailModel {
4
    private String status;
4
    private String status;
5
    private String logTime;
5
    private String logTime;
-
 
6
    private String endTime;
6
    private String duration;
7
    private String duration;
7
    private int durationSeconds;
8
    private int durationSeconds;
8
 
9
 
9
    public BreakTimeDetailModel() {
10
    public BreakTimeDetailModel() {
10
    }
11
    }
11
 
12
 
12
    public BreakTimeDetailModel(String status, String logTime, String duration, int durationSeconds) {
13
    public BreakTimeDetailModel(String status, String logTime, String endTime, String duration, int durationSeconds) {
13
        this.status = status;
14
        this.status = status;
14
        this.logTime = logTime;
15
        this.logTime = logTime;
-
 
16
        this.endTime = endTime;
15
        this.duration = duration;
17
        this.duration = duration;
16
        this.durationSeconds = durationSeconds;
18
        this.durationSeconds = durationSeconds;
17
    }
19
    }
18
 
20
 
19
    public String getStatus() {
21
    public String getStatus() {
Line 30... Line 32...
30
 
32
 
31
    public void setLogTime(String logTime) {
33
    public void setLogTime(String logTime) {
32
        this.logTime = logTime;
34
        this.logTime = logTime;
33
    }
35
    }
34
 
36
 
-
 
37
    public String getEndTime() {
-
 
38
        return endTime;
-
 
39
    }
-
 
40
 
-
 
41
    public void setEndTime(String endTime) {
-
 
42
        this.endTime = endTime;
-
 
43
    }
-
 
44
 
35
    public String getDuration() {
45
    public String getDuration() {
36
        return duration;
46
        return duration;
37
    }
47
    }
38
 
48
 
39
    public void setDuration(String duration) {
49
    public void setDuration(String duration) {