Subversion Repositories SmartDukaan

Rev

Rev 23884 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
23884 amit.gupta 1
package com.spice.profitmandi.common.model;
2
 
3
import java.time.LocalDateTime;
4
 
5
public class PriceDropModel {
6
	private int itemId;
7
	private float tp;
8
	private float pd;
9
	private float mop;
24049 amit.gupta 10
	private float dp;
23884 amit.gupta 11
	private float nlc;
12
	private LocalDateTime affectedDate;
13
	private boolean allColors;
14
 
15
 
16
	public boolean isAllColors() {
17
		return allColors;
18
	}
19
 
20
 
21
	public void setAllColors(boolean allColors) {
22
		this.allColors = allColors;
23
	}
24
 
25
 
26
 
27
 
28
	public LocalDateTime getAffectedDate() {
29
		return affectedDate;
30
	}
31
 
32
 
33
	public void setAffectedDate(LocalDateTime affectedDate) {
34
		this.affectedDate = affectedDate;
35
	}
36
 
37
 
38
	public int getItemId() {
39
		return itemId;
40
	}
24049 amit.gupta 41
 
42
 
23884 amit.gupta 43
 
44
 
24049 amit.gupta 45
	public float getDp() {
46
		return dp;
47
	}
48
 
49
 
50
	public void setDp(float dp) {
51
		this.dp = dp;
52
	}
53
 
54
 
23884 amit.gupta 55
	public void setItemId(int itemId) {
56
		this.itemId = itemId;
57
	}
58
 
59
 
60
	public float getTp() {
61
		return tp;
62
	}
63
 
64
 
65
	public void setTp(float tp) {
66
		this.tp = tp;
67
	}
68
 
69
 
70
	public float getPd() {
71
		return pd;
72
	}
73
 
74
 
75
	public void setPd(float pd) {
76
		this.pd = pd;
77
	}
78
 
79
 
80
	public float getMop() {
81
		return mop;
82
	}
83
 
84
 
85
	public void setMop(float mop) {
86
		this.mop = mop;
87
	}
88
 
89
 
90
	public float getNlc() {
91
		return nlc;
92
	}
93
 
94
 
95
	public void setNlc(float nlc) {
96
		this.nlc = nlc;
97
	}
98
 
99
 
100
	@Override
101
	public String toString() {
24049 amit.gupta 102
		return "PriceDropModel [itemId=" + itemId + ", tp=" + tp + ", pd=" + pd + ", mop=" + mop + ", dp=" + dp
103
				+ ", nlc=" + nlc + ", affectedDate=" + affectedDate + ", allColors=" + allColors + "]";
23884 amit.gupta 104
	}
105
 
106
 
107
}