Subversion Repositories SmartDukaan

Rev

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

Rev 23884 Rev 24049
Line 5... Line 5...
5
public class PriceDropModel {
5
public class PriceDropModel {
6
	private int itemId;
6
	private int itemId;
7
	private float tp;
7
	private float tp;
8
	private float pd;
8
	private float pd;
9
	private float mop;
9
	private float mop;
-
 
10
	private float dp;
10
	private float nlc;
11
	private float nlc;
11
	private LocalDateTime affectedDate;
12
	private LocalDateTime affectedDate;
12
	private boolean allColors;
13
	private boolean allColors;
13
	
14
	
14
	
15
	
Line 35... Line 36...
35
 
36
 
36
 
37
 
37
	public int getItemId() {
38
	public int getItemId() {
38
		return itemId;
39
		return itemId;
39
	}
40
	}
-
 
41
	
-
 
42
	
-
 
43
 
-
 
44
 
-
 
45
	public float getDp() {
-
 
46
		return dp;
-
 
47
	}
-
 
48
 
-
 
49
 
-
 
50
	public void setDp(float dp) {
-
 
51
		this.dp = dp;
-
 
52
	}
40
 
53
 
41
 
54
 
42
	public void setItemId(int itemId) {
55
	public void setItemId(int itemId) {
43
		this.itemId = itemId;
56
		this.itemId = itemId;
44
	}
57
	}
Line 84... Line 97...
84
	}
97
	}
85
 
98
 
86
 
99
 
87
	@Override
100
	@Override
88
	public String toString() {
101
	public String toString() {
89
		return "PriceDropModel [itemId=" + itemId + ", tp=" + tp + ", pd=" + pd + ", mop=" + mop + ", nlc=" + nlc
102
		return "PriceDropModel [itemId=" + itemId + ", tp=" + tp + ", pd=" + pd + ", mop=" + mop + ", dp=" + dp
90
				+ ", affectedDate=" + affectedDate + ", allColors=" + allColors + "]";
103
				+ ", nlc=" + nlc + ", affectedDate=" + affectedDate + ", allColors=" + allColors + "]";
91
	}
104
	}
92
	
105
	
93
	
106
	
94
}
107
}