Subversion Repositories SmartDukaan

Rev

Rev 36645 | Rev 36762 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 36645 Rev 36758
Line 1... Line 1...
1
package com.spice.profitmandi.dao.model;
1
package com.spice.profitmandi.dao.model;
2
 
2
 
-
 
3
import com.spice.profitmandi.common.model.ProfitMandiConstants;
-
 
4
 
3
import java.math.BigDecimal;
5
import java.math.BigDecimal;
4
import java.time.LocalDate;
6
import java.time.LocalDate;
5
import java.time.LocalTime;
7
import java.time.LocalTime;
6
import java.util.Date;
-
 
7
import java.util.List;
8
import java.util.List;
8
 
9
 
9
public class LocationTrackingModel {
10
public class LocationTrackingModel {
10
 
11
 
11
    private int id;
12
    private int id;
Line 17... Line 18...
17
    private String taskName;
18
    private String taskName;
18
    private String checkInTime;
19
    private String checkInTime;
19
    private String checkOutTime;
20
    private String checkOutTime;
20
    private String transitTime;
21
    private String transitTime;
21
    private String timeSpent;
22
    private String timeSpent;
22
    private String markType;
23
    private ProfitMandiConstants.MARK_TYPE markType;
23
    private String taskType;
24
    private String taskType;
24
    private LocalTime taskTime;
25
    private LocalTime taskTime;
25
    private String taskDescription;
26
    private String taskDescription;
26
    private String address;
27
    private String address;
27
    private String attachment;
28
    private String attachment;
Line 188... Line 189...
188
 
189
 
189
    public void setTimeSpent(String timeSpent) {
190
    public void setTimeSpent(String timeSpent) {
190
        this.timeSpent = timeSpent;
191
        this.timeSpent = timeSpent;
191
    }
192
    }
192
 
193
 
193
    public String getMarkType() {
194
    public ProfitMandiConstants.MARK_TYPE getMarkType() {
194
        return markType;
195
        return markType;
195
    }
196
    }
196
 
197
 
197
    public void setMarkType(String markType) {
198
    public void setMarkType(ProfitMandiConstants.MARK_TYPE markType) {
198
        this.markType = markType;
199
        this.markType = markType;
199
    }
200
    }
200
 
201
 
201
    public boolean isStatus() {
202
    public boolean isStatus() {
202
        return status;
203
        return status;