Subversion Repositories SmartDukaan

Rev

Rev 35949 | Details | Compare with Previous | 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;
35969 vikas 15
    private int replyCount;
35949 vikas 16
    private String createTimestamp;
17
    private String updateTimestamp;
18
 
19
    public int getId() {
20
        return id;
21
    }
22
 
23
    public void setId(int id) {
24
        this.id = id;
25
    }
26
 
27
    public String getRetailerName() {
28
        return retailerName;
29
    }
30
 
31
    public void setRetailerName(String retailerName) {
32
        this.retailerName = retailerName;
33
    }
34
 
35
    public String getRetailerPhone() {
36
        return retailerPhone;
37
    }
38
 
39
    public void setRetailerPhone(String retailerPhone) {
40
        this.retailerPhone = retailerPhone;
41
    }
42
 
43
    public String getStoreName() {
44
        return storeName;
45
    }
46
 
47
    public void setStoreName(String storeName) {
48
        this.storeName = storeName;
49
    }
50
 
51
    public String getStoreCode() {
52
        return storeCode;
53
    }
54
 
55
    public void setStoreCode(String storeCode) {
56
        this.storeCode = storeCode;
57
    }
58
 
59
    public String getSubject() {
60
        return subject;
61
    }
62
 
63
    public void setSubject(String subject) {
64
        this.subject = subject;
65
    }
66
 
67
    public String getMessage() {
68
        return message;
69
    }
70
 
71
    public void setMessage(String message) {
72
        this.message = message;
73
    }
74
 
75
    public String getTiming() {
76
        return timing;
77
    }
78
 
79
    public void setTiming(String timing) {
80
        this.timing = timing;
81
    }
82
 
83
    public String getTimingLabel() {
84
        return timingLabel;
85
    }
86
 
87
    public void setTimingLabel(String timingLabel) {
88
        this.timingLabel = timingLabel;
89
    }
90
 
91
    public String getStatus() {
92
        return status;
93
    }
94
 
95
    public void setStatus(String status) {
96
        this.status = status;
97
    }
98
 
99
    public String getResolutionNotes() {
100
        return resolutionNotes;
101
    }
102
 
103
    public void setResolutionNotes(String resolutionNotes) {
104
        this.resolutionNotes = resolutionNotes;
105
    }
106
 
35969 vikas 107
    public int getReplyCount() {
108
        return replyCount;
109
    }
110
 
111
    public void setReplyCount(int replyCount) {
112
        this.replyCount = replyCount;
113
    }
114
 
35949 vikas 115
    public String getCreateTimestamp() {
116
        return createTimestamp;
117
    }
118
 
119
    public void setCreateTimestamp(String createTimestamp) {
120
        this.createTimestamp = createTimestamp;
121
    }
122
 
123
    public String getUpdateTimestamp() {
124
        return updateTimestamp;
125
    }
126
 
127
    public void setUpdateTimestamp(String updateTimestamp) {
128
        this.updateTimestamp = updateTimestamp;
129
    }
130
}