| 36376 |
aman |
1 |
package com.spice.profitmandi.dao.cart.v2;
|
|
|
2 |
|
|
|
3 |
import java.math.BigDecimal;
|
|
|
4 |
|
|
|
5 |
public class PricingBreakup {
|
|
|
6 |
|
|
|
7 |
private BigDecimal subtotal;
|
|
|
8 |
private BigDecimal lineDiscounts;
|
|
|
9 |
private BigDecimal couponDiscount;
|
|
|
10 |
private BigDecimal taxableBase;
|
|
|
11 |
private BigDecimal totalTax;
|
|
|
12 |
private BigDecimal shipping;
|
|
|
13 |
private BigDecimal walletDeduction;
|
|
|
14 |
private BigDecimal grandTotal;
|
|
|
15 |
private String currency;
|
|
|
16 |
|
|
|
17 |
public PricingBreakup() {}
|
|
|
18 |
|
|
|
19 |
public BigDecimal getSubtotal() { return subtotal; }
|
|
|
20 |
public void setSubtotal(BigDecimal subtotal) { this.subtotal = subtotal; }
|
|
|
21 |
|
|
|
22 |
public BigDecimal getLineDiscounts() { return lineDiscounts; }
|
|
|
23 |
public void setLineDiscounts(BigDecimal lineDiscounts) { this.lineDiscounts = lineDiscounts; }
|
|
|
24 |
|
|
|
25 |
public BigDecimal getCouponDiscount() { return couponDiscount; }
|
|
|
26 |
public void setCouponDiscount(BigDecimal couponDiscount) { this.couponDiscount = couponDiscount; }
|
|
|
27 |
|
|
|
28 |
public BigDecimal getTaxableBase() { return taxableBase; }
|
|
|
29 |
public void setTaxableBase(BigDecimal taxableBase) { this.taxableBase = taxableBase; }
|
|
|
30 |
|
|
|
31 |
public BigDecimal getTotalTax() { return totalTax; }
|
|
|
32 |
public void setTotalTax(BigDecimal totalTax) { this.totalTax = totalTax; }
|
|
|
33 |
|
|
|
34 |
public BigDecimal getShipping() { return shipping; }
|
|
|
35 |
public void setShipping(BigDecimal shipping) { this.shipping = shipping; }
|
|
|
36 |
|
|
|
37 |
public BigDecimal getWalletDeduction() { return walletDeduction; }
|
|
|
38 |
public void setWalletDeduction(BigDecimal walletDeduction) { this.walletDeduction = walletDeduction; }
|
|
|
39 |
|
|
|
40 |
public BigDecimal getGrandTotal() { return grandTotal; }
|
|
|
41 |
public void setGrandTotal(BigDecimal grandTotal) { this.grandTotal = grandTotal; }
|
|
|
42 |
|
|
|
43 |
public String getCurrency() { return currency; }
|
|
|
44 |
public void setCurrency(String currency) { this.currency = currency; }
|
|
|
45 |
}
|