Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
21686 ashik.ali 1
package com.spice.profitmandi.common.model;
2
 
3
import java.util.Set;
4
 
5
public class CustomFofoOrderItem {
6
 
7
	private String description;
8
	private int quantity;
9
	private float rate;
10
	private float amount;
11
	private float taxRate;
12
	private float tax;
13
	private float itemTotal;
14
	private String serialNumbers;
15
	public String getDescription() {
16
		return description;
17
	}
18
	public void setDescription(String description) {
19
		this.description = description;
20
	}
21
	public int getQuantity() {
22
		return quantity;
23
	}
24
	public void setQuantity(int quantity) {
25
		this.quantity = quantity;
26
	}
27
	public float getRate() {
28
		return rate;
29
	}
30
	public void setRate(float rate) {
31
		this.rate = rate;
32
	}
33
	public float getAmount() {
34
		return amount;
35
	}
36
	public void setAmount(float amount) {
37
		this.amount = amount;
38
	}
39
	public float getTaxRate() {
40
		return taxRate;
41
	}
42
	public void setTaxRate(float taxRate) {
43
		this.taxRate = taxRate;
44
	}
45
	public float getTax() {
46
		return tax;
47
	}
48
	public void setTax(float tax) {
49
		this.tax = tax;
50
	}
51
	public float getItemTotal() {
52
		return itemTotal;
53
	}
54
	public void setItemTotal(float itemTotal) {
55
		this.itemTotal = itemTotal;
56
	}
57
 
58
	public String getSerialNumbers() {
59
		return serialNumbers;
60
	}
61
	public void setSerialNumbers(String serialNumbers) {
62
		this.serialNumbers = serialNumbers;
63
	}
64
}