Subversion Repositories SmartDukaan

Rev

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