Subversion Repositories SmartDukaan

Rev

Rev 25906 | Rev 34276 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
25903 tejbeer 1
package com.spice.profitmandi.web.req;
2
 
3
import java.time.LocalDateTime;
4
 
5
import com.spice.profitmandi.dao.enumuration.dtr.FranchiseeActivityStatus;
6
 
7
public class CreateFranchiseeRequest {
25906 tejbeer 8
	private int id;
25903 tejbeer 9
	private int fofoId;
10
	private String agenda;
11
	private String partnerRemark;
12
	private String outsideVisibity;
13
	private String instoreVisibility;
14
	private String outsideStock;
15
	private String systemKnowledge;
16
	private String workingDevice;
17
	private String workingPrinter;
18
	private String carryBags;
19
	private String smartdukaanTshirt;
20
	private String latestDummies;
21
	private String investment;
22
	private int mtd;
23
	private String hygiene;
24
	private String resolution;
25
	private FranchiseeActivityStatus action;
26
	private LocalDateTime schelduleTimestamp;
25906 tejbeer 27
	private LocalDateTime firstSchelduleTimestamp;
25903 tejbeer 28
	private String createdBy;
30488 tejbeer 29
	private int pendingBilling;
30
	private String online;
25903 tejbeer 31
 
30488 tejbeer 32
	public int getPendingBilling() {
33
		return pendingBilling;
34
	}
35
 
36
	public void setPendingBilling(int pendingBilling) {
37
		this.pendingBilling = pendingBilling;
38
	}
39
 
40
	public String getOnline() {
41
		return online;
42
	}
43
 
44
	public void setOnline(String online) {
45
		this.online = online;
46
	}
47
 
48
	public int getId() {
49
		return id;
50
	}
51
 
52
	public void setId(int id) {
53
		this.id = id;
54
	}
55
 
25903 tejbeer 56
	public String getCreatedBy() {
57
		return createdBy;
58
	}
59
 
25906 tejbeer 60
	public LocalDateTime getFirstSchelduleTimestamp() {
61
		return firstSchelduleTimestamp;
62
	}
63
 
64
	public void setFirstSchelduleTimestamp(LocalDateTime firstSchelduleTimestamp) {
65
		this.firstSchelduleTimestamp = firstSchelduleTimestamp;
66
	}
67
 
25903 tejbeer 68
	public void setCreatedBy(String createdBy) {
69
		this.createdBy = createdBy;
70
	}
71
 
72
	public int getFofoId() {
73
		return fofoId;
74
	}
75
 
76
	public void setFofoId(int fofoId) {
77
		this.fofoId = fofoId;
78
	}
79
 
80
	public String getAgenda() {
81
		return agenda;
82
	}
83
 
84
	public void setAgenda(String agenda) {
85
		this.agenda = agenda;
86
	}
87
 
88
	public String getPartnerRemark() {
89
		return partnerRemark;
90
	}
91
 
92
	public void setPartnerRemark(String partnerRemark) {
93
		this.partnerRemark = partnerRemark;
94
	}
95
 
96
	public String getOutsideVisibity() {
97
		return outsideVisibity;
98
	}
99
 
100
	public void setOutsideVisibity(String outsideVisibity) {
101
		this.outsideVisibity = outsideVisibity;
102
	}
103
 
104
	public String getInstoreVisibility() {
105
		return instoreVisibility;
106
	}
107
 
108
	public void setInstoreVisibility(String instoreVisibility) {
109
		this.instoreVisibility = instoreVisibility;
110
	}
111
 
112
	public String getOutsideStock() {
113
		return outsideStock;
114
	}
115
 
116
	public void setOutsideStock(String outsideStock) {
117
		this.outsideStock = outsideStock;
118
	}
119
 
120
	public String getSystemKnowledge() {
121
		return systemKnowledge;
122
	}
123
 
124
	public void setSystemKnowledge(String systemKnowledge) {
125
		this.systemKnowledge = systemKnowledge;
126
	}
127
 
128
	public String getWorkingDevice() {
129
		return workingDevice;
130
	}
131
 
132
	public void setWorkingDevice(String workingDevice) {
133
		this.workingDevice = workingDevice;
134
	}
135
 
136
	public String getWorkingPrinter() {
137
		return workingPrinter;
138
	}
139
 
140
	public void setWorkingPrinter(String workingPrinter) {
141
		this.workingPrinter = workingPrinter;
142
	}
143
 
144
	public String getCarryBags() {
145
		return carryBags;
146
	}
147
 
148
	public void setCarryBags(String carryBags) {
149
		this.carryBags = carryBags;
150
	}
151
 
152
	public String getSmartdukaanTshirt() {
153
		return smartdukaanTshirt;
154
	}
155
 
156
	public void setSmartdukaanTshirt(String smartdukaanTshirt) {
157
		this.smartdukaanTshirt = smartdukaanTshirt;
158
	}
159
 
160
	public String getLatestDummies() {
161
		return latestDummies;
162
	}
163
 
164
	public void setLatestDummies(String latestDummies) {
165
		this.latestDummies = latestDummies;
166
	}
167
 
168
	public String getInvestment() {
169
		return investment;
170
	}
171
 
172
	public void setInvestment(String investment) {
173
		this.investment = investment;
174
	}
175
 
176
	public int getMtd() {
177
		return mtd;
178
	}
179
 
180
	public void setMtd(int mtd) {
181
		this.mtd = mtd;
182
	}
183
 
184
	public String getHygiene() {
185
		return hygiene;
186
	}
187
 
188
	public void setHygiene(String hygiene) {
189
		this.hygiene = hygiene;
190
	}
191
 
192
	public String getResolution() {
193
		return resolution;
194
	}
195
 
196
	public void setResolution(String resolution) {
197
		this.resolution = resolution;
198
	}
199
 
200
	public FranchiseeActivityStatus getAction() {
201
		return action;
202
	}
203
 
204
	public void setAction(FranchiseeActivityStatus action) {
205
		this.action = action;
206
	}
207
 
208
	public LocalDateTime getSchelduleTimestamp() {
209
		return schelduleTimestamp;
210
	}
211
 
212
	public void setSchelduleTimestamp(LocalDateTime schelduleTimestamp) {
213
		this.schelduleTimestamp = schelduleTimestamp;
214
	}
215
 
216
}