Subversion Repositories SmartDukaan

Rev

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

Rev 34692 Rev 34694
Line 64... Line 64...
64
    private String attachment;
64
    private String attachment;
65
 
65
 
66
    @Column(name = "total_distance", precision = 10, scale = 2)
66
    @Column(name = "total_distance", precision = 10, scale = 2)
67
    private double totalDistance;
67
    private double totalDistance;
68
 
68
 
-
 
69
    @Column(name = "estimated_time", precision = 10, scale = 2)
-
 
70
    private double estimatedTime;
-
 
71
 
69
    @Column(name = "assigned_by", nullable = false)
72
    @Column(name = "assigned_by", nullable = false)
70
    private int assignedBy;
73
    private int assignedBy;
71
 
74
 
72
    @Column(name = "status", nullable = false)
75
    @Column(name = "status", nullable = false)
73
    private boolean status;
76
    private boolean status;
Line 210... Line 213...
210
 
213
 
211
    public void setTotalDistance(double totalDistance) {
214
    public void setTotalDistance(double totalDistance) {
212
        this.totalDistance = totalDistance;
215
        this.totalDistance = totalDistance;
213
    }
216
    }
214
 
217
 
-
 
218
    public ProfitMandiConstants.MARK_TYPE getMarkType() {
-
 
219
        return markType;
-
 
220
    }
-
 
221
 
-
 
222
    public void setMarkType(ProfitMandiConstants.MARK_TYPE markType) {
-
 
223
        this.markType = markType;
-
 
224
    }
-
 
225
 
-
 
226
    public double getEstimatedTime() {
-
 
227
        return estimatedTime;
-
 
228
    }
-
 
229
 
-
 
230
    public void setEstimatedTime(double estimatedTime) {
-
 
231
        this.estimatedTime = estimatedTime;
-
 
232
    }
-
 
233
 
215
    public int getAssignedBy() {
234
    public int getAssignedBy() {
216
        return assignedBy;
235
        return assignedBy;
217
    }
236
    }
218
 
237
 
219
    public void setAssignedBy(int assignedBy) {
238
    public void setAssignedBy(int assignedBy) {