Subversion Repositories SmartDukaan

Rev

Rev 21734 | Rev 26665 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
25880 amit.gupta 1
package com.spice.profitmandi.service.inventory;
21339 kshitij.so 2
 
3
public class AvailabilityInfo
4
{
5
    private BulkPricing[] bulkPricing;
6
    private double sellingPrice;
7
    private String color;
8
    private long item_id;
9
    private String sellingPriceType;
10
    private double netPriceAfterCashBack;
11
    private double cash_back;
12
    private int maxQuantity;
13
    private int cash_back_type;
14
    private int quantityStep;
15
    private int availability;
16
    private int minBuyQuantity;
17
 
18
	public BulkPricing[] getBulkPricing() {
19
		return bulkPricing;
20
	}
21
	public void setBulkPricing(BulkPricing[] bulkPricing) {
22
		this.bulkPricing = bulkPricing;
23
	}
24
	public double getSellingPrice() {
25
		return sellingPrice;
26
	}
27
	public void setSellingPrice(double sellingPrice) {
28
		this.sellingPrice = sellingPrice;
29
	}
30
	public String getColor() {
31
		return color;
32
	}
33
	public void setColor(String color) {
34
		this.color = color;
35
	}
36
	public long getItem_id() {
37
		return item_id;
38
	}
39
	public void setItem_id(long item_id) {
40
		this.item_id = item_id;
41
	}
42
	public String getSellingPriceType() {
43
		return sellingPriceType;
44
	}
45
	public void setSellingPriceType(String sellingPriceType) {
46
		this.sellingPriceType = sellingPriceType;
47
	}
48
	public double getNetPriceAfterCashBack() {
49
		return netPriceAfterCashBack;
50
	}
51
	public void setNetPriceAfterCashBack(double netPriceAfterCashBack) {
52
		this.netPriceAfterCashBack = netPriceAfterCashBack;
53
	}
54
	public double getCash_back() {
55
		return cash_back;
56
	}
57
	public void setCash_back(double cash_back) {
58
		this.cash_back = cash_back;
59
	}
60
	public int getMaxQuantity() {
61
		return maxQuantity;
62
	}
63
	public void setMaxQuantity(int maxQuantity) {
64
		this.maxQuantity = maxQuantity;
65
	}
66
	public int getCash_back_type() {
67
		return cash_back_type;
68
	}
69
	public void setCash_back_type(int cash_back_type) {
70
		this.cash_back_type = cash_back_type;
71
	}
72
	public int getQuantityStep() {
73
		return quantityStep;
74
	}
75
	public void setQuantityStep(int quantityStep) {
76
		this.quantityStep = quantityStep;
77
	}
78
	public int getAvailability() {
79
		return availability;
80
	}
81
	public void setAvailability(int availability) {
82
		this.availability = availability;
83
	}
84
	public int getMinBuyQuantity() {
85
		return minBuyQuantity;
86
	}
87
	public void setMinBuyQuantity(int minBuyQuantity) {
88
		this.minBuyQuantity = minBuyQuantity;
89
	}
90
 
91
 
92
}