| 36376 |
aman |
1 |
package com.spice.profitmandi.dao.cart.v2;
|
|
|
2 |
|
|
|
3 |
import java.math.BigDecimal;
|
|
|
4 |
|
|
|
5 |
public class TaxBreakup {
|
|
|
6 |
|
|
|
7 |
private BigDecimal cgst;
|
|
|
8 |
private BigDecimal sgst;
|
|
|
9 |
private BigDecimal igst;
|
|
|
10 |
private BigDecimal cess;
|
|
|
11 |
private BigDecimal totalTax;
|
|
|
12 |
private String hsnCode;
|
|
|
13 |
|
|
|
14 |
public TaxBreakup() {}
|
|
|
15 |
|
|
|
16 |
public BigDecimal getCgst() { return cgst; }
|
|
|
17 |
public void setCgst(BigDecimal cgst) { this.cgst = cgst; }
|
|
|
18 |
|
|
|
19 |
public BigDecimal getSgst() { return sgst; }
|
|
|
20 |
public void setSgst(BigDecimal sgst) { this.sgst = sgst; }
|
|
|
21 |
|
|
|
22 |
public BigDecimal getIgst() { return igst; }
|
|
|
23 |
public void setIgst(BigDecimal igst) { this.igst = igst; }
|
|
|
24 |
|
|
|
25 |
public BigDecimal getCess() { return cess; }
|
|
|
26 |
public void setCess(BigDecimal cess) { this.cess = cess; }
|
|
|
27 |
|
|
|
28 |
public BigDecimal getTotalTax() { return totalTax; }
|
|
|
29 |
public void setTotalTax(BigDecimal totalTax) { this.totalTax = totalTax; }
|
|
|
30 |
|
|
|
31 |
public String getHsnCode() { return hsnCode; }
|
|
|
32 |
public void setHsnCode(String hsnCode) { this.hsnCode = hsnCode; }
|
|
|
33 |
}
|