Subversion Repositories SmartDukaan

Rev

Rev 22653 | Rev 22859 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 22653 Rev 22730
Line 4... Line 4...
4
import javax.persistence.Entity;
4
import javax.persistence.Entity;
5
import javax.persistence.Id;
5
import javax.persistence.Id;
6
import javax.persistence.Table;
6
import javax.persistence.Table;
7
 
7
 
8
/**
8
/**
9
 * This class basically contains address details
9
 * This class basically contains private deal user.
10
 * 
10
 * 
11
 * @author ashikali
11
 * @author ashikali
12
 *
12
 *
13
 */
13
 */
14
@Entity
14
@Entity
Line 20... Line 20...
20
	private int id;
20
	private int id;
21
	
21
	
22
	@Column(name="counter_id")
22
	@Column(name="counter_id")
23
	private Integer counterId;
23
	private Integer counterId;
24
	
24
	
-
 
25
	public boolean isFofo() {
-
 
26
		return isFofo;
-
 
27
	}
-
 
28
	public void setFofo(boolean isFofo) {
-
 
29
		this.isFofo = isFofo;
-
 
30
	}
25
	@Column(name = "isActive")
31
	@Column(name = "isActive")
26
	private boolean active;
32
	private boolean active;
27
	
33
	
-
 
34
	@Column(name = "isFofo")
-
 
35
	private boolean isFofo;
-
 
36
	
28
	@Column(name = "bulkShipmentAmountLimit")
37
	@Column(name = "bulkShipmentAmountLimit")
29
	private float bulkShipmentAmountLimit;
38
	private float bulkShipmentAmountLimit;
30
	
39
	
31
	public int getId() {
40
	public int getId() {
32
		return id;
41
		return id;