Rev 35631 | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.model;import java.util.List;public class TargetModel {private float totalPartnerSecondary;private float totalPartnerCollection;private int todayCollectionCount;private float totalPartnerTargetSecondary;private float totalPartnerTargetCollection;private boolean isRBMAndL1;private boolean isRBMAndL2;private boolean isRBMAndL3;private boolean isRBMAndNotL1;private boolean isSales;// Category counts for partner listprivate int overdueCount;private int planTodayCount;private int carryForwardCount;private int zeroBilledCount;private int untouchedCount;private int normalCount;private List<PartnerTargetAchievementModel> targetAchievement;public int getTodayCollectionCount() {return todayCollectionCount;}public void setTodayCollectionCount(int todayCollectionCount) {this.todayCollectionCount = todayCollectionCount;}public float getTotalPartnerSecondary() {return totalPartnerSecondary;}public void setTotalPartnerSecondary(float totalPartnerSecondary) {this.totalPartnerSecondary = totalPartnerSecondary;}public float getTotalPartnerCollection() {return totalPartnerCollection;}public void setTotalPartnerCollection(float totalPartnerCollection) {this.totalPartnerCollection = totalPartnerCollection;}public List<PartnerTargetAchievementModel> getTargetAchievement() {return targetAchievement;}public void setTargetAchievement(List<PartnerTargetAchievementModel> targetAchievement) {this.targetAchievement = targetAchievement;}public float getTotalPartnerTargetSecondary() {return totalPartnerTargetSecondary;}public void setTotalPartnerTargetSecondary(float totalPartnerTargetSecondary) {this.totalPartnerTargetSecondary = totalPartnerTargetSecondary;}public float getTotalPartnerTargetCollection() {return totalPartnerTargetCollection;}public void setTotalPartnerTargetCollection(float totalPartnerTargetCollection) {this.totalPartnerTargetCollection = totalPartnerTargetCollection;}public boolean isRBMAndL1() {return isRBMAndL1;}public void setRBMAndL1(boolean RBMAndL1) {isRBMAndL1 = RBMAndL1;}public boolean isRBMAndL2() {return isRBMAndL2;}public void setRBMAndL2(boolean RBMAndL2) {isRBMAndL2 = RBMAndL2;}public boolean isRBMAndL3() {return isRBMAndL3;}public void setRBMAndL3(boolean RBMAndL3) {isRBMAndL3 = RBMAndL3;}public boolean isRBMAndNotL1() {return isRBMAndNotL1;}public void setRBMAndNotL1(boolean RBMAndNotL1) {isRBMAndNotL1 = RBMAndNotL1;}public boolean isSales() {return isSales;}public void setSales(boolean sales) {isSales = sales;}public int getOverdueCount() {return overdueCount;}public void setOverdueCount(int overdueCount) {this.overdueCount = overdueCount;}public int getPlanTodayCount() {return planTodayCount;}public void setPlanTodayCount(int planTodayCount) {this.planTodayCount = planTodayCount;}public int getCarryForwardCount() {return carryForwardCount;}public void setCarryForwardCount(int carryForwardCount) {this.carryForwardCount = carryForwardCount;}public int getZeroBilledCount() {return zeroBilledCount;}public void setZeroBilledCount(int zeroBilledCount) {this.zeroBilledCount = zeroBilledCount;}public int getUntouchedCount() {return untouchedCount;}public void setUntouchedCount(int untouchedCount) {this.untouchedCount = untouchedCount;}public int getNormalCount() {return normalCount;}public void setNormalCount(int normalCount) {this.normalCount = normalCount;}@Overridepublic String toString() {return "TargetModel{" +"totalPartnerSecondary=" + totalPartnerSecondary +", totalPartnerCollection=" + totalPartnerCollection +", todayCollectionCount=" + todayCollectionCount +", totalPartnerTargetSecondary=" + totalPartnerTargetSecondary +", totalPartnerTargetCollection=" + totalPartnerTargetCollection +", isRBMAndL1=" + isRBMAndL1 +", isRBMAndL2=" + isRBMAndL2 +", isRBMAndL3=" + isRBMAndL3 +", isRBMAndNotL1=" + isRBMAndNotL1 +", isSales=" + isSales +", overdueCount=" + overdueCount +", planTodayCount=" + planTodayCount +", carryForwardCount=" + carryForwardCount +", zeroBilledCount=" + zeroBilledCount +", untouchedCount=" + untouchedCount +", normalCount=" + normalCount +", targetAchievement=" + targetAchievement +'}';}}