Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
36376 aman 1
package com.spice.profitmandi.dao.cart.v2;
2
 
3
import java.math.BigDecimal;
4
 
5
public class HydratedLine {
6
 
7
	private int lineId;
8
	private int productId;
9
	private Integer variantId;
10
	private int quantity;
11
	private int minBuyQuantity;
12
	private int quantityStep;
13
	private Long sellerId;
14
	private LineStatus status;
15
	private LivePrice price;
16
	private LiveInventory inventory;
17
	private TaxBreakup tax;
18
	private CartContent content;
19
	private BigDecimal lastSeenPrice;
20
	private InsuranceBinding insurance;
21
 
22
	public HydratedLine() {}
23
 
24
	public int getLineId() { return lineId; }
25
	public void setLineId(int lineId) { this.lineId = lineId; }
26
 
27
	public int getProductId() { return productId; }
28
	public void setProductId(int productId) { this.productId = productId; }
29
 
30
	public Integer getVariantId() { return variantId; }
31
	public void setVariantId(Integer variantId) { this.variantId = variantId; }
32
 
33
	public int getQuantity() { return quantity; }
34
	public void setQuantity(int quantity) { this.quantity = quantity; }
35
 
36
	public int getMinBuyQuantity() { return minBuyQuantity; }
37
	public void setMinBuyQuantity(int minBuyQuantity) { this.minBuyQuantity = minBuyQuantity; }
38
 
39
	public int getQuantityStep() { return quantityStep; }
40
	public void setQuantityStep(int quantityStep) { this.quantityStep = quantityStep; }
41
 
42
	public Long getSellerId() { return sellerId; }
43
	public void setSellerId(Long sellerId) { this.sellerId = sellerId; }
44
 
45
	public LineStatus getStatus() { return status; }
46
	public void setStatus(LineStatus status) { this.status = status; }
47
 
48
	public LivePrice getPrice() { return price; }
49
	public void setPrice(LivePrice price) { this.price = price; }
50
 
51
	public LiveInventory getInventory() { return inventory; }
52
	public void setInventory(LiveInventory inventory) { this.inventory = inventory; }
53
 
54
	public TaxBreakup getTax() { return tax; }
55
	public void setTax(TaxBreakup tax) { this.tax = tax; }
56
 
57
	public CartContent getContent() { return content; }
58
	public void setContent(CartContent content) { this.content = content; }
59
 
60
	public BigDecimal getLastSeenPrice() { return lastSeenPrice; }
61
	public void setLastSeenPrice(BigDecimal lastSeenPrice) { this.lastSeenPrice = lastSeenPrice; }
62
 
63
	public InsuranceBinding getInsurance() { return insurance; }
64
	public void setInsurance(InsuranceBinding insurance) { this.insurance = insurance; }
65
}