Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
25069 amit.gupta 1
package com.spice.profitmandi.dao.entity.catalog;
2
 
3
import java.time.LocalDateTime;
4
 
5
public class SchemeDumpRow {
6
	private String code;
7
	private String Store_Name;
8
	private String fofo_id;
9
	private int Item_Id;
10
	private String brand;
11
	private String model_name;
12
	private String model_number;
13
	private String color;
14
	private double Scheme_IN_DP;
15
	private double Scheme_out_dp;
16
	private int Scheme_Id;
17
	private String name;
18
	private String type;
19
	private double amount;
20
	private String Purchase_Invoice;
21
	private String SALE_INOVOICE;
22
	private double Paid_Amount;
23
	private LocalDateTime create_timestamp;
24
	private LocalDateTime rolled_back_timestamp;
25
	private String serial_number;
26
	private String IN_REF;
27
	private String OUT_REF;
28
	public SchemeDumpRow(String code, String store_Name, String fofo_id, int item_Id, String brand, String model_name,
29
			String model_number, String color, double scheme_IN_DP, double scheme_out_dp, int scheme_Id, String name,
30
			String type, double amount, String purchase_Invoice, String sALE_INOVOICE, double paid_Amount,
31
			LocalDateTime create_timestamp, LocalDateTime rolled_back_timestamp, String serial_number, String iN_REF,
32
			String oUT_REF) {
33
		super();
34
		this.code = code;
35
		Store_Name = store_Name;
36
		this.fofo_id = fofo_id;
37
		Item_Id = item_Id;
38
		this.brand = brand;
39
		this.model_name = model_name;
40
		this.model_number = model_number;
41
		this.color = color;
42
		Scheme_IN_DP = scheme_IN_DP;
43
		Scheme_out_dp = scheme_out_dp;
44
		Scheme_Id = scheme_Id;
45
		this.name = name;
46
		this.type = type;
47
		this.amount = amount;
48
		Purchase_Invoice = purchase_Invoice;
49
		SALE_INOVOICE = sALE_INOVOICE;
50
		Paid_Amount = paid_Amount;
51
		this.create_timestamp = create_timestamp;
52
		this.rolled_back_timestamp = rolled_back_timestamp;
53
		this.serial_number = serial_number;
54
		IN_REF = iN_REF;
55
		OUT_REF = oUT_REF;
56
	}
57
	public String getCode() {
58
		return code;
59
	}
60
	public void setCode(String code) {
61
		this.code = code;
62
	}
63
	public String getStore_Name() {
64
		return Store_Name;
65
	}
66
	public void setStore_Name(String store_Name) {
67
		Store_Name = store_Name;
68
	}
69
	public String getFofo_id() {
70
		return fofo_id;
71
	}
72
	public void setFofo_id(String fofo_id) {
73
		this.fofo_id = fofo_id;
74
	}
75
	public int getItem_Id() {
76
		return Item_Id;
77
	}
78
	public void setItem_Id(int item_Id) {
79
		Item_Id = item_Id;
80
	}
81
	public String getBrand() {
82
		return brand;
83
	}
84
	public void setBrand(String brand) {
85
		this.brand = brand;
86
	}
87
	public String getModel_name() {
88
		return model_name;
89
	}
90
	public void setModel_name(String model_name) {
91
		this.model_name = model_name;
92
	}
93
	public String getModel_number() {
94
		return model_number;
95
	}
96
	public void setModel_number(String model_number) {
97
		this.model_number = model_number;
98
	}
99
	public String getColor() {
100
		return color;
101
	}
102
	public void setColor(String color) {
103
		this.color = color;
104
	}
105
	public double getScheme_IN_DP() {
106
		return Scheme_IN_DP;
107
	}
108
	public void setScheme_IN_DP(double scheme_IN_DP) {
109
		Scheme_IN_DP = scheme_IN_DP;
110
	}
111
	public double getScheme_out_dp() {
112
		return Scheme_out_dp;
113
	}
114
	public void setScheme_out_dp(double scheme_out_dp) {
115
		Scheme_out_dp = scheme_out_dp;
116
	}
117
	public int getScheme_Id() {
118
		return Scheme_Id;
119
	}
120
	public void setScheme_Id(int scheme_Id) {
121
		Scheme_Id = scheme_Id;
122
	}
123
	public String getName() {
124
		return name;
125
	}
126
	public void setName(String name) {
127
		this.name = name;
128
	}
129
	public String getType() {
130
		return type;
131
	}
132
	public void setType(String type) {
133
		this.type = type;
134
	}
135
	public double getAmount() {
136
		return amount;
137
	}
138
	public void setAmount(double amount) {
139
		this.amount = amount;
140
	}
141
	public String getPurchase_Invoice() {
142
		return Purchase_Invoice;
143
	}
144
	public void setPurchase_Invoice(String purchase_Invoice) {
145
		Purchase_Invoice = purchase_Invoice;
146
	}
147
	public String getSALE_INOVOICE() {
148
		return SALE_INOVOICE;
149
	}
150
	public void setSALE_INOVOICE(String sALE_INOVOICE) {
151
		SALE_INOVOICE = sALE_INOVOICE;
152
	}
153
	public double getPaid_Amount() {
154
		return Paid_Amount;
155
	}
156
	public void setPaid_Amount(double paid_Amount) {
157
		Paid_Amount = paid_Amount;
158
	}
159
	public LocalDateTime getCreate_timestamp() {
160
		return create_timestamp;
161
	}
162
	public void setCreate_timestamp(LocalDateTime create_timestamp) {
163
		this.create_timestamp = create_timestamp;
164
	}
165
	public LocalDateTime getRolled_back_timestamp() {
166
		return rolled_back_timestamp;
167
	}
168
	public void setRolled_back_timestamp(LocalDateTime rolled_back_timestamp) {
169
		this.rolled_back_timestamp = rolled_back_timestamp;
170
	}
171
	public String getSerial_number() {
172
		return serial_number;
173
	}
174
	public void setSerial_number(String serial_number) {
175
		this.serial_number = serial_number;
176
	}
177
	public String getIN_REF() {
178
		return IN_REF;
179
	}
180
	public void setIN_REF(String iN_REF) {
181
		IN_REF = iN_REF;
182
	}
183
	public String getOUT_REF() {
184
		return OUT_REF;
185
	}
186
	public void setOUT_REF(String oUT_REF) {
187
		OUT_REF = oUT_REF;
188
	}
189
 
190
 
191
}