Subversion Repositories SmartDukaan

Rev

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

Rev 36645 Rev 36758
Line 5... Line 5...
5
import java.time.LocalTime;
5
import java.time.LocalTime;
6
import java.time.LocalDateTime;
6
import java.time.LocalDateTime;
7
import java.util.ArrayList;
7
import java.util.ArrayList;
8
import java.util.List;
8
import java.util.List;
9
 
9
 
-
 
10
import com.spice.profitmandi.common.model.ProfitMandiConstants;
10
import com.spice.profitmandi.dao.convertor.LocalDateTimeAttributeConverter;
11
import com.spice.profitmandi.dao.convertor.LocalDateTimeAttributeConverter;
11
import com.spice.profitmandi.dao.entity.user.Lead;
12
import com.spice.profitmandi.dao.entity.user.Lead;
12
import com.spice.profitmandi.dao.entity.user.FranchiseeVisit;
13
import com.spice.profitmandi.dao.entity.user.FranchiseeVisit;
13
 
14
 
14
@Entity
15
@Entity
Line 40... Line 41...
40
 
41
 
41
    @Column(name = "task_name", nullable = false, length = 191)
42
    @Column(name = "task_name", nullable = false, length = 191)
42
    private String taskName;
43
    private String taskName;
43
 
44
 
44
    @Column(name = "mark_type", nullable = false, length = 191)
45
    @Column(name = "mark_type", nullable = false, length = 191)
45
    private String markType;
46
    private ProfitMandiConstants.MARK_TYPE markType;
46
 
47
 
47
    @Column(name = "check_in_time", nullable = true, length = 20)
48
    @Column(name = "check_in_time", nullable = true, length = 20)
48
    private LocalTime checkInTime;
49
    private LocalTime checkInTime;
49
 
50
 
50
    @Column(name = "check_out_time", nullable = true, length = 20)
51
    @Column(name = "check_out_time", nullable = true, length = 20)
Line 171... Line 172...
171
 
172
 
172
    public void setTaskName(String taskName) {
173
    public void setTaskName(String taskName) {
173
        this.taskName = taskName;
174
        this.taskName = taskName;
174
    }
175
    }
175
 
176
 
176
    public String getMarkType() {
177
    public ProfitMandiConstants.MARK_TYPE getMarkType() {
177
        return markType;
178
        return markType;
178
    }
179
    }
179
 
180
 
180
    public void setMarkType(String markType) {
181
    public void setMarkType(ProfitMandiConstants.MARK_TYPE markType) {
181
        this.markType = markType;
182
        this.markType = markType;
182
    }
183
    }
183
 
184
 
184
    public LocalTime getCheckInTime() {
185
    public LocalTime getCheckInTime() {
185
        return checkInTime;
186
        return checkInTime;