Subversion Repositories SmartDukaan

Rev

Rev 21923 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
21894 ashik.ali 1
package com.spice.profitmandi.common.model;
2
 
3
public class GstRate {
4
	private float igstRate;
5
	private float cgstRate;
6
	private float sgstRate;
7
	private String hsnCode;
8
	public float getIgstRate() {
9
		return igstRate;
10
	}
11
	public void setIgstRate(float igstRate) {
12
		this.igstRate = igstRate;
13
	}
14
	public float getCgstRate() {
15
		return cgstRate;
16
	}
17
	public void setCgstRate(float cgstRate) {
18
		this.cgstRate = cgstRate;
19
	}
20
	public float getSgstRate() {
21
		return sgstRate;
22
	}
23
	public void setSgstRate(float sgstRate) {
24
		this.sgstRate = sgstRate;
25
	}
26
	public String getHsnCode() {
27
		return hsnCode;
28
	}
29
	public void setHsnCode(String hsnCode) {
30
		this.hsnCode = hsnCode;
31
	}
32
	@Override
33
	public String toString() {
34
		return "GstRate [igstRate=" + igstRate + ", cgstRate=" + cgstRate + ", sgstRate=" + sgstRate + ", hsnCode="
35
				+ hsnCode + "]";
36
	}
37
 
38
}