Subversion Repositories SmartDukaan

Rev

Rev 21894 | Rev 21923 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.common.model;

public class CustomFofoOrderItem {
        private String description;
        private int quantity;
        private float rate;
        private float amount;
        private float igstRate;
        private float igstAmount;
        private float cgstRate;
        private float cgstAmount;
        private float sgstRate;
        private float sgstAmount;
        private String hsnCode;
        private float itemTotal;
        private String serialNumbers;
        public String getDescription() {
                return description;
        }
        public void setDescription(String description) {
                this.description = description;
        }
        public int getQuantity() {
                return quantity;
        }
        public void setQuantity(int quantity) {
                this.quantity = quantity;
        }
        public float getRate() {
                return rate;
        }
        public void setRate(float rate) {
                this.rate = rate;
        }
        public float getAmount() {
                return amount;
        }
        public void setAmount(float amount) {
                this.amount = amount;
        }
        public float getIgstRate() {
                return igstRate;
        }
        public void setIgstRate(float igstRate) {
                this.igstRate = igstRate;
        }
        public float getIgstAmount() {
                return igstAmount;
        }
        public void setIgstAmount(float igstAmount) {
                this.igstAmount = igstAmount;
        }
        public float getCgstRate() {
                return cgstRate;
        }
        public void setCgstRate(float cgstRate) {
                this.cgstRate = cgstRate;
        }
        public float getCgstAmount() {
                return cgstAmount;
        }
        public void setCgstAmount(float cgstAmount) {
                this.cgstAmount = cgstAmount;
        }
        public float getSgstRate() {
                return sgstRate;
        }
        public void setSgstRate(float sgstRate) {
                this.sgstRate = sgstRate;
        }
        public float getSgstAmount() {
                return sgstAmount;
        }
        public void setSgstAmount(float sgstAmount) {
                this.sgstAmount = sgstAmount;
        }
        public String getHsnCode() {
                return hsnCode;
        }
        public void setHsnCode(String hsnCode) {
                this.hsnCode = hsnCode;
        }
        public float getItemTotal() {
                return itemTotal;
        }
        public void setItemTotal(float itemTotal) {
                this.itemTotal = itemTotal;
        }
        
        public String getSerialNumbers() {
                return serialNumbers;
        }
        public void setSerialNumbers(String serialNumbers) {
                this.serialNumbers = serialNumbers;
        }
}