Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
35949 vikas 1
package com.spice.profitmandi.web.res;
2
 
3
public class AssignedRequestResponse {
4
    private int id;
5
    private String retailerName;
6
    private String retailerPhone;
7
    private String storeName;
8
    private String storeCode;
9
    private String subject;
10
    private String message;
11
    private String timing;
12
    private String timingLabel;
13
    private String status;
14
    private String resolutionNotes;
15
    private String createTimestamp;
16
    private String updateTimestamp;
17
 
18
    public int getId() {
19
        return id;
20
    }
21
 
22
    public void setId(int id) {
23
        this.id = id;
24
    }
25
 
26
    public String getRetailerName() {
27
        return retailerName;
28
    }
29
 
30
    public void setRetailerName(String retailerName) {
31
        this.retailerName = retailerName;
32
    }
33
 
34
    public String getRetailerPhone() {
35
        return retailerPhone;
36
    }
37
 
38
    public void setRetailerPhone(String retailerPhone) {
39
        this.retailerPhone = retailerPhone;
40
    }
41
 
42
    public String getStoreName() {
43
        return storeName;
44
    }
45
 
46
    public void setStoreName(String storeName) {
47
        this.storeName = storeName;
48
    }
49
 
50
    public String getStoreCode() {
51
        return storeCode;
52
    }
53
 
54
    public void setStoreCode(String storeCode) {
55
        this.storeCode = storeCode;
56
    }
57
 
58
    public String getSubject() {
59
        return subject;
60
    }
61
 
62
    public void setSubject(String subject) {
63
        this.subject = subject;
64
    }
65
 
66
    public String getMessage() {
67
        return message;
68
    }
69
 
70
    public void setMessage(String message) {
71
        this.message = message;
72
    }
73
 
74
    public String getTiming() {
75
        return timing;
76
    }
77
 
78
    public void setTiming(String timing) {
79
        this.timing = timing;
80
    }
81
 
82
    public String getTimingLabel() {
83
        return timingLabel;
84
    }
85
 
86
    public void setTimingLabel(String timingLabel) {
87
        this.timingLabel = timingLabel;
88
    }
89
 
90
    public String getStatus() {
91
        return status;
92
    }
93
 
94
    public void setStatus(String status) {
95
        this.status = status;
96
    }
97
 
98
    public String getResolutionNotes() {
99
        return resolutionNotes;
100
    }
101
 
102
    public void setResolutionNotes(String resolutionNotes) {
103
        this.resolutionNotes = resolutionNotes;
104
    }
105
 
106
    public String getCreateTimestamp() {
107
        return createTimestamp;
108
    }
109
 
110
    public void setCreateTimestamp(String createTimestamp) {
111
        this.createTimestamp = createTimestamp;
112
    }
113
 
114
    public String getUpdateTimestamp() {
115
        return updateTimestamp;
116
    }
117
 
118
    public void setUpdateTimestamp(String updateTimestamp) {
119
        this.updateTimestamp = updateTimestamp;
120
    }
121
}