Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.dao.cart.v2;

import java.math.BigDecimal;

public class TaxBreakup {

        private BigDecimal cgst;
        private BigDecimal sgst;
        private BigDecimal igst;
        private BigDecimal cess;
        private BigDecimal totalTax;
        private String hsnCode;

        public TaxBreakup() {}

        public BigDecimal getCgst() { return cgst; }
        public void setCgst(BigDecimal cgst) { this.cgst = cgst; }

        public BigDecimal getSgst() { return sgst; }
        public void setSgst(BigDecimal sgst) { this.sgst = sgst; }

        public BigDecimal getIgst() { return igst; }
        public void setIgst(BigDecimal igst) { this.igst = igst; }

        public BigDecimal getCess() { return cess; }
        public void setCess(BigDecimal cess) { this.cess = cess; }

        public BigDecimal getTotalTax() { return totalTax; }
        public void setTotalTax(BigDecimal totalTax) { this.totalTax = totalTax; }

        public String getHsnCode() { return hsnCode; }
        public void setHsnCode(String hsnCode) { this.hsnCode = hsnCode; }
}