Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
29272 manish 1
package com.spice.profitmandi.dao.model;
2
 
3
import java.util.List;
4
 
5
import com.spice.profitmandi.dao.entity.user.Lead;
6
 
7
public class LeadStatusData {
8
 
9
 
10
	private List<Long> data;
11
	private List<String> backgroundColor;
12
	private String label;
13
 
14
 
15
 
16
 
17
 
18
	public List<Long> getData() {
19
		return data;
20
	}
21
	public void setData(List<Long> data) {
22
		this.data = data;
23
	}
24
	public List<String> getBackgroundColor() {
25
		return backgroundColor;
26
	}
27
	public void setBackgroundColor(List<String> backgroundColor) {
28
		this.backgroundColor = backgroundColor;
29
	}
30
	public String getLabel() {
31
		return label;
32
	}
33
	public void setLabel(String label) {
34
		this.label = label;
35
	}
36
 
37
 
38
 
39
 
40
 
41
}