Subversion Repositories SmartDukaan

Rev

Rev 21730 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
21297 kshitij.so 1
package com.spice.profitmandi.web.res;
2
 
3
public class SolrSuggestionResponse
4
{
5
	private String subCategoryId;
6
 
7
	private String category;
8
 
9
	private String title;
10
 
11
	private String category_id;
12
 
13
	public String getSubCategoryId ()
14
	{
15
		return subCategoryId;
16
	}
17
 
18
	public void setSubCategoryId (String subCategoryId)
19
	{
20
		this.subCategoryId = subCategoryId;
21
	}
22
 
23
	public String getCategory ()
24
	{
25
		return category;
26
	}
27
 
28
	public void setCategory (String category)
29
	{
30
		this.category = category;
31
	}
32
 
33
	public String getTitle ()
34
	{
35
		return title;
36
	}
37
 
38
	public void setTitle (String title)
39
	{
40
		this.title = title;
41
	}
42
 
43
	public String getCategory_id ()
44
	{
45
		return category_id;
46
	}
47
 
48
	public void setCategory_id (String category_id)
49
	{
50
		this.category_id = category_id;
51
	}
52
 
53
}