Subversion Repositories SmartDukaan

Rev

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

Rev 34723 Rev 34761
Line 63... Line 63...
63
 
63
 
64
    @Column(name = "attachment", length = 191)
64
    @Column(name = "attachment", length = 191)
65
    private String attachment;
65
    private String attachment;
66
 
66
 
67
    @Column(name = "total_distance", precision = 10, scale = 2)
67
    @Column(name = "total_distance", precision = 10, scale = 2)
68
    private double totalDistance;
68
    private String totalDistance;
69
 
69
 
70
    @Column(name = "estimated_time", precision = 10, scale = 2)
70
    @Column(name = "estimated_time", precision = 10, scale = 2)
71
    private LocalTime estimatedTime;
71
    private LocalTime estimatedTime;
72
 
72
 
73
    @Column(name = "assigned_by", nullable = false)
73
    @Column(name = "assigned_by", nullable = false)
Line 214... Line 214...
214
 
214
 
215
    public void setAttachment(String attachment) {
215
    public void setAttachment(String attachment) {
216
        this.attachment = attachment;
216
        this.attachment = attachment;
217
    }
217
    }
218
 
218
 
219
    public double getTotalDistance() {
219
    public String getTotalDistance() {
220
        return totalDistance;
220
        return totalDistance;
221
    }
221
    }
222
 
222
 
223
    public void setTotalDistance(double totalDistance) {
223
    public void setTotalDistance(String totalDistance) {
224
        this.totalDistance = totalDistance;
224
        this.totalDistance = totalDistance;
225
    }
225
    }
226
 
226
 
227
    public String getMarkType() {
227
    public String getMarkType() {
228
        return markType;
228
        return markType;