Subversion Repositories SmartDukaan

Rev

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 GstRate {
        private float igstRate;
        private float cgstRate;
        private float sgstRate;
        private String hsnCode;
        public float getIgstRate() {
                return igstRate;
        }
        public void setIgstRate(float igstRate) {
                this.igstRate = igstRate;
        }
        public float getCgstRate() {
                return cgstRate;
        }
        public void setCgstRate(float cgstRate) {
                this.cgstRate = cgstRate;
        }
        public float getSgstRate() {
                return sgstRate;
        }
        public void setSgstRate(float sgstRate) {
                this.sgstRate = sgstRate;
        }
        public String getHsnCode() {
                return hsnCode;
        }
        public void setHsnCode(String hsnCode) {
                this.hsnCode = hsnCode;
        }
        @Override
        public String toString() {
                return "GstRate [igstRate=" + igstRate + ", cgstRate=" + cgstRate + ", sgstRate=" + sgstRate + ", hsnCode="
                                + hsnCode + "]";
        }
        
}