Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
30158 manish 1
package com.spice.profitmandi.dao.model;
2
 
3
 
4
import com.spice.profitmandi.dao.enumuration.transaction.SchemePayoutStatus;
5
 
6
import java.time.LocalDateTime;
7
import com.spice.profitmandi.dao.enumuration.catalog.AmountType;
8
import com.spice.profitmandi.dao.enumuration.catalog.SchemeType;
9
 
10
public class SchemePayoutReportModel {
11
	private int id;
12
	private String brand;
13
	private String modelName;
14
	private String modelNumber;
15
	private String color;
16
 
17
	private float schemeInDp;
18
	private float SchemeOutDp;
19
	private int schemeId;
20
 
21
	private String name;
22
	private SchemeType type;
23
	private AmountType amountType;
24
 
25
	private float amount;
26
	private String  purchaseReference;
27
	private String invoiceNumber;
28
	private float  sioAmount;
29
 
30
	private SchemePayoutStatus  status;
31
 
32
	private String statusDescription;
33
 
34
	private LocalDateTime createTimestamp;
35
	private LocalDateTime rolledBackTimestamp;
36
 
37
	private  String serialNumber;
38
 
39
	public int getId() {
40
		return id;
41
	}
42
 
43
	public void setId(int id) {
44
		this.id = id;
45
	}
46
 
47
	public String getBrand() {
48
		return brand;
49
	}
50
 
51
	public void setBrand(String brand) {
52
		this.brand = brand;
53
	}
54
 
55
	public String getModelName() {
56
		return modelName;
57
	}
58
 
59
	public void setModelName(String modelName) {
60
		this.modelName = modelName;
61
	}
62
 
63
	public String getModelNumber() {
64
		return modelNumber;
65
	}
66
 
67
	public void setModelNumber(String modelNumber) {
68
		this.modelNumber = modelNumber;
69
	}
70
 
71
	public String getColor() {
72
		return color;
73
	}
74
 
75
	public void setColor(String color) {
76
		this.color = color;
77
	}
78
 
79
	public float getSchemeInDp() {
80
		return schemeInDp;
81
	}
82
 
83
	public void setSchemeInDp(float schemeInDp) {
84
		this.schemeInDp = schemeInDp;
85
	}
86
 
87
	public float getSchemeOutDp() {
88
		return SchemeOutDp;
89
	}
90
 
91
	public void setSchemeOutDp(float schemeOutDp) {
92
		SchemeOutDp = schemeOutDp;
93
	}
94
 
95
	public int getSchemeId() {
96
		return schemeId;
97
	}
98
 
99
	public void setSchemeId(int schemeId) {
100
		this.schemeId = schemeId;
101
	}
102
 
103
	public String getName() {
104
		return name;
105
	}
106
 
107
	public void setName(String name) {
108
		this.name = name;
109
	}
110
 
111
	public SchemeType getType() {
112
		return type;
113
	}
114
 
115
	public void setType(SchemeType type) {
116
		this.type = type;
117
	}
118
 
119
	public AmountType getAmountType() {
120
		return amountType;
121
	}
122
 
123
	public void setAmountType(AmountType amountType) {
124
		this.amountType = amountType;
125
	}
126
 
127
	public float getAmount() {
128
		return amount;
129
	}
130
 
131
	public void setAmount(float amount) {
132
		this.amount = amount;
133
	}
134
 
135
	public String getPurchaseReference() {
136
		return purchaseReference;
137
	}
138
 
139
	public void setPurchaseReference(String purchaseReference) {
140
		this.purchaseReference = purchaseReference;
141
	}
142
 
143
	public String getInvoiceNumber() {
144
		return invoiceNumber;
145
	}
146
 
147
	public void setInvoiceNumber(String invoiceNumber) {
148
		this.invoiceNumber = invoiceNumber;
149
	}
150
 
151
	public float getSioAmount() {
152
		return sioAmount;
153
	}
154
 
155
	public void setSioAmount(float sioAmount) {
156
		this.sioAmount = sioAmount;
157
	}
158
 
159
	public SchemePayoutStatus getStatus() {
160
		return status;
161
	}
162
 
163
	public void setStatus(SchemePayoutStatus status) {
164
		this.status = status;
165
	}
166
 
167
	public String getStatusDescription() {
168
		return statusDescription;
169
	}
170
 
171
	public void setStatusDescription(String statusDescription) {
172
		this.statusDescription = statusDescription;
173
	}
174
 
175
	public LocalDateTime getCreateTimestamp() {
176
		return createTimestamp;
177
	}
178
 
179
	public void setCreateTimestamp(LocalDateTime createTimestamp) {
180
		this.createTimestamp = createTimestamp;
181
	}
182
 
183
	public LocalDateTime getRolledBackTimestamp() {
184
		return rolledBackTimestamp;
185
	}
186
 
187
	public void setRolledBackTimestamp(LocalDateTime rolledBackTimestamp) {
188
		this.rolledBackTimestamp = rolledBackTimestamp;
189
	}
190
 
191
	public String getSerialNumber() {
192
		return serialNumber;
193
	}
194
 
195
	public void setSerialNumber(String serialNumber) {
196
		this.serialNumber = serialNumber;
197
	}
198
 
199
 
200
 
201
	@Override
202
	public String toString() {
203
		return "SchemePayoutReportModel [id=" + id + ", brand=" + brand + ", modelName=" + modelName + ", modelNumber="
204
				+ modelNumber + ", color=" + color + ", schemeInDp=" + schemeInDp + ", SchemeOutDp=" + SchemeOutDp
205
				+ ", schemeId=" + schemeId + ", name=" + name + ", type=" + type + ", amountType=" + amountType
206
				+ ", amount=" + amount + ", purchaseReference=" + purchaseReference + ", invoiceNumber=" + invoiceNumber
207
				+ ", sioAmount=" + sioAmount + ", status=" + status + ", statusDescription=" + statusDescription
208
				+ ", createTimestamp=" + createTimestamp + ", rolledBackTimestamp=" + rolledBackTimestamp
209
				+ ", serialNumber=" + serialNumber + "]";
210
	}
211
 
212
	public SchemePayoutReportModel(int id, String brand, String modelName, String modelNumber, String color,
213
			float schemeInDp, float schemeOutDp, int schemeId, String name, SchemeType type, AmountType amountType,
214
			float amount, String purchaseReference, String invoiceNumber, float sioAmount, SchemePayoutStatus status,
215
			String statusDescription, LocalDateTime createTimestamp, LocalDateTime rolledBackTimestamp,
216
			String serialNumber) {
217
		super();
218
		this.id = id;
219
		this.brand = brand;
220
		this.modelName = modelName;
221
		this.modelNumber = modelNumber;
222
		this.color = color;
223
		this.schemeInDp = schemeInDp;
224
		SchemeOutDp = schemeOutDp;
225
		this.schemeId = schemeId;
226
		this.name = name;
227
		this.type = type;
228
		this.amountType = amountType;
229
		this.amount = amount;
230
		this.purchaseReference = purchaseReference;
231
		this.invoiceNumber = invoiceNumber;
232
		this.sioAmount = sioAmount;
233
		this.status = status;
234
		this.statusDescription = statusDescription;
235
		this.createTimestamp = createTimestamp;
236
		this.rolledBackTimestamp = rolledBackTimestamp;
237
		this.serialNumber = serialNumber;
238
	}
239
 
240
 
241
 
242
 
243
 
244
 
245
}