Subversion Repositories SmartDukaan

Rev

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

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