Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
21864 ashik.ali 1
package in.shop2020.catalog.dashboard.shared;
2
 
3
import java.io.Serializable;
4
 
5
import com.google.gwt.user.client.rpc.IsSerializable;
6
 
7
public class CategoryHsnCode implements IsSerializable, Serializable {
8
	private int categoryId;
9
	private String hsnCode;
10
	private String description;
11
	public int getCategoryId() {
12
		return categoryId;
13
	}
14
	public void setCategoryId(int categoryId) {
15
		this.categoryId = categoryId;
16
	}
17
	public String getHsnCode() {
18
		return hsnCode;
19
	}
20
	public void setHsnCode(String hsnCode) {
21
		this.hsnCode = hsnCode;
22
	}
23
	public String getDescription() {
24
		return description;
25
	}
26
	public void setDescription(String description) {
27
		this.description = description;
28
	}
29
}