Subversion Repositories SmartDukaan

Rev

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

Rev 24171 Rev 24883
Line 22... Line 22...
22
	@Column(name="target_value")
22
	@Column(name="target_value")
23
	private float targetValue;
23
	private float targetValue;
24
	
24
	
25
	@Column(name="target_id")
25
	@Column(name="target_id")
26
	private int targetId;
26
	private int targetId;
-
 
27
	
-
 
28
	
-
 
29
 
-
 
30
	public PartnerTarget() {
-
 
31
		super();
-
 
32
	}
-
 
33
 
-
 
34
	public PartnerTarget(int fofoId, float targetValue) {
-
 
35
		super();
-
 
36
		this.fofoId = fofoId;
-
 
37
		this.targetValue = targetValue;
-
 
38
	}
27
 
39
 
28
	public int getId() {
40
	public int getId() {
29
		return id;
41
		return id;
30
	}
42
	}
31
 
43