Subversion Repositories SmartDukaan

Rev

Rev 24049 | Go to most recent revision | Details | 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;
10
	private float nlc;
11
	private LocalDateTime affectedDate;
12
	private boolean allColors;
13
 
14
 
15
	public boolean isAllColors() {
16
		return allColors;
17
	}
18
 
19
 
20
	public void setAllColors(boolean allColors) {
21
		this.allColors = allColors;
22
	}
23
 
24
 
25
 
26
 
27
	public LocalDateTime getAffectedDate() {
28
		return affectedDate;
29
	}
30
 
31
 
32
	public void setAffectedDate(LocalDateTime affectedDate) {
33
		this.affectedDate = affectedDate;
34
	}
35
 
36
 
37
	public int getItemId() {
38
		return itemId;
39
	}
40
 
41
 
42
	public void setItemId(int itemId) {
43
		this.itemId = itemId;
44
	}
45
 
46
 
47
	public float getTp() {
48
		return tp;
49
	}
50
 
51
 
52
	public void setTp(float tp) {
53
		this.tp = tp;
54
	}
55
 
56
 
57
	public float getPd() {
58
		return pd;
59
	}
60
 
61
 
62
	public void setPd(float pd) {
63
		this.pd = pd;
64
	}
65
 
66
 
67
	public float getMop() {
68
		return mop;
69
	}
70
 
71
 
72
	public void setMop(float mop) {
73
		this.mop = mop;
74
	}
75
 
76
 
77
	public float getNlc() {
78
		return nlc;
79
	}
80
 
81
 
82
	public void setNlc(float nlc) {
83
		this.nlc = nlc;
84
	}
85
 
86
 
87
	@Override
88
	public String toString() {
89
		return "PriceDropModel [itemId=" + itemId + ", tp=" + tp + ", pd=" + pd + ", mop=" + mop + ", nlc=" + nlc
90
				+ ", affectedDate=" + affectedDate + ", allColors=" + allColors + "]";
91
	}
92
 
93
 
94
}