Subversion Repositories SmartDukaan

Rev

Rev 28024 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
28024 tejbeer 1
package com.spice.profitmandi.dao.entity.dtr;
2
 
3
import javax.persistence.Column;
4
import javax.persistence.Entity;
5
import javax.persistence.GeneratedValue;
6
import javax.persistence.GenerationType;
7
import javax.persistence.Id;
8
import javax.persistence.Table;
9
 
10
@Entity
31860 tejbeer 11
@Table(name = "dtr.retailer_block_brands")
28024 tejbeer 12
public class RetailerBlockBrands {
13
 
14
	@Id
15
	@Column(name = "id", unique = false, updatable = false)
16
	@GeneratedValue(strategy = GenerationType.IDENTITY)
17
	private int id;
18
 
19
	@Column(name = "block_brands")
20
	private String blockBrands;
21
 
22
	@Column(name = "fofo_id")
23
	private int fofoId;
24
 
25
	public int getFofoId() {
26
		return fofoId;
27
	}
28
 
29
	public int getId() {
30
		return id;
31
	}
32
 
33
	public void setId(int id) {
34
		this.id = id;
35
	}
36
 
37
	public void setFofoId(int fofoId) {
38
		this.fofoId = fofoId;
39
	}
40
 
41
	public String getBlockBrands() {
42
		return blockBrands;
43
	}
44
 
45
	public void setBlockBrands(String blockBrands) {
46
		this.blockBrands = blockBrands;
47
	}
48
 
49
	@Override
50
	public String toString() {
51
		return "RetailerBlockBrands [id=" + id + ", blockBrands=" + blockBrands + ", fofoId=" + fofoId + "]";
52
	}
53
 
54
}