Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
35971 aman 1
package com.spice.profitmandi.dao.model;
2
 
3
import java.time.LocalDateTime;
4
 
5
public class DelayReportItem {
6
 
7
    private int onboardingId;
8
    private String code;
9
    private String outletName;
10
    private String city;
11
    private String filledBy;
12
    private String eventName;
13
    private String responsibleTeam;
14
    private LocalDateTime plannedDate;
15
    private long daysOverdue;
16
 
17
    public DelayReportItem() {
18
    }
19
 
20
    public DelayReportItem(int onboardingId, String code, String outletName, String city, String filledBy,
21
                           String eventName, String responsibleTeam, LocalDateTime plannedDate, long daysOverdue) {
22
        this.onboardingId = onboardingId;
23
        this.code = code;
24
        this.outletName = outletName;
25
        this.city = city;
26
        this.filledBy = filledBy;
27
        this.eventName = eventName;
28
        this.responsibleTeam = responsibleTeam;
29
        this.plannedDate = plannedDate;
30
        this.daysOverdue = daysOverdue;
31
 
32
    }
33
 
34
    public int getOnboardingId() {
35
        return onboardingId;
36
    }
37
 
38
    public void setOnboardingId(int onboardingId) {
39
        this.onboardingId = onboardingId;
40
    }
41
 
42
    public String getCode() {
43
        return code;
44
    }
45
 
46
    public void setCode(String code) {
47
        this.code = code;
48
    }
49
 
50
    public String getOutletName() {
51
        return outletName;
52
    }
53
 
54
    public void setOutletName(String outletName) {
55
        this.outletName = outletName;
56
    }
57
 
58
    public String getCity() {
59
        return city;
60
    }
61
 
62
    public void setCity(String city) {
63
        this.city = city;
64
    }
65
 
66
    public String getFilledBy() {
67
        return filledBy;
68
    }
69
 
70
    public void setFilledBy(String filledBy) {
71
        this.filledBy = filledBy;
72
    }
73
 
74
    public String getEventName() {
75
        return eventName;
76
    }
77
 
78
    public void setEventName(String eventName) {
79
        this.eventName = eventName;
80
    }
81
 
82
    public String getResponsibleTeam() {
83
        return responsibleTeam;
84
    }
85
 
86
    public void setResponsibleTeam(String responsibleTeam) {
87
        this.responsibleTeam = responsibleTeam;
88
    }
89
 
90
    public LocalDateTime getPlannedDate() {
91
        return plannedDate;
92
    }
93
 
94
    public void setPlannedDate(LocalDateTime plannedDate) {
95
        this.plannedDate = plannedDate;
96
    }
97
 
98
    public long getDaysOverdue() {
99
        return daysOverdue;
100
    }
101
 
102
    public void setDaysOverdue(long daysOverdue) {
103
        this.daysOverdue = daysOverdue;
104
    }
105
 
106
    @Override
107
    public String toString() {
108
        return "DelayReportItem{" +
109
                "onboardingId=" + onboardingId +
110
                ", code='" + code + '\'' +
111
                ", outletName='" + outletName + '\'' +
112
                ", city='" + city + '\'' +
113
                ", filledBy='" + filledBy + '\'' +
114
                ", eventName='" + eventName + '\'' +
115
                ", responsibleTeam='" + responsibleTeam + '\'' +
116
                ", plannedDate=" + plannedDate +
117
                ", daysOverdue=" + daysOverdue +
118
                '}';
119
    }
120
}