Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
21545 ashik.ali 1
package com.spice.profitmandi.dao.model;
2
 
3
public class LimitedMasterDataPojo {
4
 
5
	private long _id;
6
	private String brand;
7
	private String model_name;
8
	private String tagline;
9
	private String thumbnail;
10
	private long buyBoxFlag;
11
	private long source_id;
12
 
13
	public long get_id() {
14
		return _id;
15
	}
16
	public void set_id(long _id) {
17
		this._id = _id;
18
	}
19
	public String getBrand() {
20
		return brand;
21
	}
22
	public void setBrand(String brand) {
23
		this.brand = brand;
24
	}
25
	public String getModel_name() {
26
		return model_name;
27
	}
28
	public void setModel_name(String model_name) {
29
		this.model_name = model_name;
30
	}
31
	public String getTagline() {
32
		return tagline;
33
	}
34
	public void setTagline(String tagline) {
35
		this.tagline = tagline;
36
	}
37
	public String getThumbnail() {
38
		return thumbnail;
39
	}
40
	public long getBuyBoxFlag() {
41
		return buyBoxFlag;
42
	}
43
	public void setBuyBoxFlag(long buyBoxFlag) {
44
		this.buyBoxFlag = buyBoxFlag;
45
	}
46
	public long getSource_id() {
47
		return source_id;
48
	}
49
	public void setSource_id(long source_id) {
50
		this.source_id = source_id;
51
	}
52
	public void setThumbnail(String thumbnail) {
53
		this.thumbnail = thumbnail;
54
	}
55
 
56
}