Subversion Repositories SmartDukaan

Rev

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