Subversion Repositories SmartDukaan

Rev

Rev 31008 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
30158 manish 1
package com.spice.profitmandi.dao.model;
2
 
3
 
31008 amit.gupta 4
import com.spice.profitmandi.dao.enumuration.catalog.AmountType;
5
import com.spice.profitmandi.dao.enumuration.catalog.SchemeType;
30158 manish 6
import com.spice.profitmandi.dao.enumuration.transaction.SchemePayoutStatus;
7
 
8
import java.time.LocalDateTime;
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;
31008 amit.gupta 16
 
30158 manish 17
	private float schemeInDp;
31008 amit.gupta 18
	private float schemeOutDp;
30158 manish 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
 
31008 amit.gupta 87
	public SchemePayoutReportModel(int id, String brand, String modelName, String modelNumber, String color,
88
								   float schemeInDp, float schemeOutDp, int schemeId, String name, SchemeType type, AmountType amountType,
89
								   float amount, String purchaseReference, String invoiceNumber, float sioAmount, SchemePayoutStatus status,
90
								   String statusDescription, LocalDateTime createTimestamp, LocalDateTime rolledBackTimestamp,
91
								   String serialNumber) {
92
		super();
93
		this.id = id;
94
		this.brand = brand;
95
		this.modelName = modelName;
96
		this.modelNumber = modelNumber;
97
		this.color = color;
98
		this.schemeInDp = schemeInDp;
33651 amit.gupta 99
		this.schemeOutDp = schemeOutDp;
31008 amit.gupta 100
		this.schemeId = schemeId;
101
		this.name = name;
102
		this.type = type;
103
		this.amountType = amountType;
104
		this.amount = amount;
105
		this.purchaseReference = purchaseReference;
106
		this.invoiceNumber = invoiceNumber;
107
		this.sioAmount = sioAmount;
108
		this.status = status;
109
		this.statusDescription = statusDescription;
110
		this.createTimestamp = createTimestamp;
111
		this.rolledBackTimestamp = rolledBackTimestamp;
112
		this.serialNumber = serialNumber;
30158 manish 113
	}
114
 
31008 amit.gupta 115
	public float getSchemeOutDp() {
116
		return schemeOutDp;
30158 manish 117
	}
118
 
119
	public int getSchemeId() {
120
		return schemeId;
121
	}
122
 
123
	public void setSchemeId(int schemeId) {
124
		this.schemeId = schemeId;
125
	}
126
 
127
	public String getName() {
128
		return name;
129
	}
130
 
131
	public void setName(String name) {
132
		this.name = name;
133
	}
134
 
135
	public SchemeType getType() {
136
		return type;
137
	}
138
 
139
	public void setType(SchemeType type) {
140
		this.type = type;
141
	}
142
 
143
	public AmountType getAmountType() {
144
		return amountType;
145
	}
146
 
147
	public void setAmountType(AmountType amountType) {
148
		this.amountType = amountType;
149
	}
150
 
151
	public float getAmount() {
152
		return amount;
153
	}
154
 
155
	public void setAmount(float amount) {
156
		this.amount = amount;
157
	}
158
 
159
	public String getPurchaseReference() {
160
		return purchaseReference;
161
	}
162
 
163
	public void setPurchaseReference(String purchaseReference) {
164
		this.purchaseReference = purchaseReference;
165
	}
166
 
167
	public String getInvoiceNumber() {
168
		return invoiceNumber;
169
	}
170
 
171
	public void setInvoiceNumber(String invoiceNumber) {
172
		this.invoiceNumber = invoiceNumber;
173
	}
174
 
175
	public float getSioAmount() {
176
		return sioAmount;
177
	}
178
 
179
	public void setSioAmount(float sioAmount) {
180
		this.sioAmount = sioAmount;
181
	}
182
 
183
	public SchemePayoutStatus getStatus() {
184
		return status;
185
	}
186
 
187
	public void setStatus(SchemePayoutStatus status) {
188
		this.status = status;
189
	}
190
 
191
	public String getStatusDescription() {
192
		return statusDescription;
193
	}
194
 
195
	public void setStatusDescription(String statusDescription) {
196
		this.statusDescription = statusDescription;
197
	}
198
 
199
	public LocalDateTime getCreateTimestamp() {
200
		return createTimestamp;
201
	}
202
 
203
	public void setCreateTimestamp(LocalDateTime createTimestamp) {
204
		this.createTimestamp = createTimestamp;
205
	}
206
 
207
	public LocalDateTime getRolledBackTimestamp() {
208
		return rolledBackTimestamp;
209
	}
210
 
211
	public void setRolledBackTimestamp(LocalDateTime rolledBackTimestamp) {
212
		this.rolledBackTimestamp = rolledBackTimestamp;
213
	}
214
 
215
	public String getSerialNumber() {
216
		return serialNumber;
217
	}
218
 
219
	public void setSerialNumber(String serialNumber) {
220
		this.serialNumber = serialNumber;
221
	}
222
 
31008 amit.gupta 223
	public void setSchemeOutDp(float schemeOutDp) {
224
		schemeOutDp = schemeOutDp;
225
	}
226
 
30158 manish 227
	@Override
228
	public String toString() {
229
		return "SchemePayoutReportModel [id=" + id + ", brand=" + brand + ", modelName=" + modelName + ", modelNumber="
31008 amit.gupta 230
				+ modelNumber + ", color=" + color + ", schemeInDp=" + schemeInDp + ", SchemeOutDp=" + schemeOutDp
30158 manish 231
				+ ", schemeId=" + schemeId + ", name=" + name + ", type=" + type + ", amountType=" + amountType
232
				+ ", amount=" + amount + ", purchaseReference=" + purchaseReference + ", invoiceNumber=" + invoiceNumber
233
				+ ", sioAmount=" + sioAmount + ", status=" + status + ", statusDescription=" + statusDescription
234
				+ ", createTimestamp=" + createTimestamp + ", rolledBackTimestamp=" + rolledBackTimestamp
235
				+ ", serialNumber=" + serialNumber + "]";
236
	}
237
 
238
 
239
 
240
 
241
 
242
 
243
}