Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
30077 tejbeer 1
package com.spice.profitmandi.dao.model;
2
 
3
import java.util.List;
4
 
5
public class TargetModel {
6
	private float totalPartnerSecondary;
7
	private float totalPartnerCollection;
30330 tejbeer 8
	private int todayCollectionCount;
30077 tejbeer 9
	private float totalPartnerTargetSecondary;
10
	private float totalPartnerTargetCollection;
34428 ranu 11
	private boolean isRBMAndL1;
12
	private boolean isRBMAndNotL1;
13
	private boolean isSales;
30077 tejbeer 14
 
35631 ranu 15
    // Category counts for partner list
16
    private int overdueCount;
17
    private int planTodayCount;
18
    private int carryForwardCount;
19
    private int zeroBilledCount;
20
    private int untouchedCount;
21
    private int normalCount;
22
 
30077 tejbeer 23
	private List<PartnerTargetAchievementModel> targetAchievement;
24
 
30330 tejbeer 25
	public int getTodayCollectionCount() {
26
		return todayCollectionCount;
27
	}
28
 
29
	public void setTodayCollectionCount(int todayCollectionCount) {
30
		this.todayCollectionCount = todayCollectionCount;
31
	}
32
 
30077 tejbeer 33
	public float getTotalPartnerSecondary() {
34
		return totalPartnerSecondary;
35
	}
36
 
37
	public void setTotalPartnerSecondary(float totalPartnerSecondary) {
38
		this.totalPartnerSecondary = totalPartnerSecondary;
39
	}
40
 
41
	public float getTotalPartnerCollection() {
42
		return totalPartnerCollection;
43
	}
44
 
45
	public void setTotalPartnerCollection(float totalPartnerCollection) {
46
		this.totalPartnerCollection = totalPartnerCollection;
47
	}
48
 
49
	public List<PartnerTargetAchievementModel> getTargetAchievement() {
50
		return targetAchievement;
51
	}
52
 
53
	public void setTargetAchievement(List<PartnerTargetAchievementModel> targetAchievement) {
54
		this.targetAchievement = targetAchievement;
55
	}
56
 
57
	public float getTotalPartnerTargetSecondary() {
58
		return totalPartnerTargetSecondary;
59
	}
60
 
61
	public void setTotalPartnerTargetSecondary(float totalPartnerTargetSecondary) {
62
		this.totalPartnerTargetSecondary = totalPartnerTargetSecondary;
63
	}
64
 
65
	public float getTotalPartnerTargetCollection() {
66
		return totalPartnerTargetCollection;
67
	}
68
 
69
	public void setTotalPartnerTargetCollection(float totalPartnerTargetCollection) {
70
		this.totalPartnerTargetCollection = totalPartnerTargetCollection;
71
	}
72
 
34428 ranu 73
	public boolean isRBMAndL1() {
74
		return isRBMAndL1;
75
	}
76
 
77
	public void setRBMAndL1(boolean RBMAndL1) {
78
		isRBMAndL1 = RBMAndL1;
79
	}
80
 
81
	public boolean isRBMAndNotL1() {
82
		return isRBMAndNotL1;
83
	}
84
 
85
	public void setRBMAndNotL1(boolean RBMAndNotL1) {
86
		isRBMAndNotL1 = RBMAndNotL1;
87
	}
88
 
89
	public boolean isSales() {
90
		return isSales;
91
	}
92
 
93
	public void setSales(boolean sales) {
94
		isSales = sales;
95
	}
96
 
35631 ranu 97
    public int getOverdueCount() {
98
        return overdueCount;
99
    }
100
 
101
    public void setOverdueCount(int overdueCount) {
102
        this.overdueCount = overdueCount;
103
    }
104
 
105
    public int getPlanTodayCount() {
106
        return planTodayCount;
107
    }
108
 
109
    public void setPlanTodayCount(int planTodayCount) {
110
        this.planTodayCount = planTodayCount;
111
    }
112
 
113
    public int getCarryForwardCount() {
114
        return carryForwardCount;
115
    }
116
 
117
    public void setCarryForwardCount(int carryForwardCount) {
118
        this.carryForwardCount = carryForwardCount;
119
    }
120
 
121
    public int getZeroBilledCount() {
122
        return zeroBilledCount;
123
    }
124
 
125
    public void setZeroBilledCount(int zeroBilledCount) {
126
        this.zeroBilledCount = zeroBilledCount;
127
    }
128
 
129
    public int getUntouchedCount() {
130
        return untouchedCount;
131
    }
132
 
133
    public void setUntouchedCount(int untouchedCount) {
134
        this.untouchedCount = untouchedCount;
135
    }
136
 
137
    public int getNormalCount() {
138
        return normalCount;
139
    }
140
 
141
    public void setNormalCount(int normalCount) {
142
        this.normalCount = normalCount;
143
    }
144
 
30077 tejbeer 145
	@Override
146
	public String toString() {
34428 ranu 147
		return "TargetModel{" +
148
				"totalPartnerSecondary=" + totalPartnerSecondary +
149
				", totalPartnerCollection=" + totalPartnerCollection +
150
				", todayCollectionCount=" + todayCollectionCount +
151
				", totalPartnerTargetSecondary=" + totalPartnerTargetSecondary +
152
				", totalPartnerTargetCollection=" + totalPartnerTargetCollection +
153
				", isRBMAndL1=" + isRBMAndL1 +
154
				", isRBMAndNotL1=" + isRBMAndNotL1 +
155
				", isSales=" + isSales +
35631 ranu 156
                ", overdueCount=" + overdueCount +
157
                ", planTodayCount=" + planTodayCount +
158
                ", carryForwardCount=" + carryForwardCount +
159
                ", zeroBilledCount=" + zeroBilledCount +
160
                ", untouchedCount=" + untouchedCount +
161
                ", normalCount=" + normalCount +
34428 ranu 162
				", targetAchievement=" + targetAchievement +
163
				'}';
30077 tejbeer 164
	}
165
 
166
}