Subversion Repositories SmartDukaan

Rev

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

Rev 29272 Rev 29431
Line 6... Line 6...
6
import com.spice.profitmandi.common.model.Data;
6
import com.spice.profitmandi.common.model.Data;
7
import com.spice.profitmandi.dao.enumuration.dtr.LeadStatus;
7
import com.spice.profitmandi.dao.enumuration.dtr.LeadStatus;
8
 
8
 
9
public class DataLeadModel {
9
public class DataLeadModel {
10
	
10
	
11
	public HashSet<LeadStatus> labels;
11
	public HashSet<String> labels;
12
	public List<LeadStatusData> datasets;
12
	public List<LeadStatusData> datasets;
13
	
13
	
14
	
14
	
15
	
15
	
-
 
16
	
16
	public HashSet<LeadStatus> getLabels() {
17
	public HashSet<String> getLabels() {
17
		return labels;
18
		return labels;
18
	}
19
	}
19
	public void setLabels(HashSet<LeadStatus> labels) {
20
	public void setLabels(HashSet<String> labels) {
20
		this.labels = labels;
21
		this.labels = labels;
21
	}
22
	}
22
	public List<LeadStatusData> getDatasets() {
23
	public List<LeadStatusData> getDatasets() {
23
		return datasets;
24
		return datasets;
24
	}
25
	}