Subversion Repositories SmartDukaan

Rev

Rev 29431 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 29431 Rev 30771
Line 1... Line 1...
1
package com.spice.profitmandi.dao.model;
1
package com.spice.profitmandi.dao.model;
2
 
2
 
3
import java.util.HashSet;
-
 
4
import java.util.List;
3
import java.util.List;
5
 
4
 
6
import com.spice.profitmandi.common.model.Data;
-
 
7
import com.spice.profitmandi.dao.enumuration.dtr.LeadStatus;
-
 
8
 
-
 
9
public class DataLeadModel {
5
public class DataLeadModel {
10
	
6
 
11
	public HashSet<String> labels;
7
	public List<String> labels;
12
	public List<LeadStatusData> datasets;
8
	public List<LeadStatusData> datasets;
13
	
-
 
14
	
9
 
15
	
10
 
16
	
-
 
17
	public HashSet<String> getLabels() {
11
	public List<String> getLabels() {
18
		return labels;
12
		return labels;
19
	}
13
	}
-
 
14
 
20
	public void setLabels(HashSet<String> labels) {
15
	public void setLabels(List<String> labels) {
21
		this.labels = labels;
16
		this.labels = labels;
22
	}
17
	}
-
 
18
 
23
	public List<LeadStatusData> getDatasets() {
19
	public List<LeadStatusData> getDatasets() {
24
		return datasets;
20
		return datasets;
25
	}
21
	}
-
 
22
 
26
	public void setDatasets(List<LeadStatusData> datasets) {
23
	public void setDatasets(List<LeadStatusData> datasets) {
27
		this.datasets = datasets;
24
		this.datasets = datasets;
28
	}
25
	}
29
 
26
 
30
	
27