Subversion Repositories SmartDukaan

Rev

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

Rev 36758 Rev 36762
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;
-
 
-
 
3
 
4
 
4
 
5
import java.math.BigDecimal;
5
import java.math.BigDecimal;
6
import java.time.LocalDate;
6
import java.time.LocalDate;
7
import java.time.LocalTime;
7
import java.time.LocalTime;
8
import java.util.List;
8
import java.util.List;
Line 18... Line 18...
18
    private String taskName;
18
    private String taskName;
19
    private String checkInTime;
19
    private String checkInTime;
20
    private String checkOutTime;
20
    private String checkOutTime;
21
    private String transitTime;
21
    private String transitTime;
22
    private String timeSpent;
22
    private String timeSpent;
23
    private ProfitMandiConstants.MARK_TYPE markType;
23
    private String markType;
24
    private String taskType;
24
    private String taskType;
25
    private LocalTime taskTime;
25
    private LocalTime taskTime;
26
    private String taskDescription;
26
    private String taskDescription;
27
    private String address;
27
    private String address;
28
    private String attachment;
28
    private String attachment;
Line 189... Line 189...
189
 
189
 
190
    public void setTimeSpent(String timeSpent) {
190
    public void setTimeSpent(String timeSpent) {
191
        this.timeSpent = timeSpent;
191
        this.timeSpent = timeSpent;
192
    }
192
    }
193
 
193
 
194
    public ProfitMandiConstants.MARK_TYPE getMarkType() {
194
    public String getMarkType() {
195
        return markType;
195
        return markType;
196
    }
196
    }
197
 
197
 
198
    public void setMarkType(ProfitMandiConstants.MARK_TYPE markType) {
198
    public void setMarkType(String markType) {
199
        this.markType = markType;
199
        this.markType = markType;
200
    }
200
    }
201
 
201
 
202
    public boolean isStatus() {
202
    public boolean isStatus() {
203
        return status;
203
        return status;