View as "text/plain" | Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.model;public class TotalTargetColectionModel {private long totalTarget;private long totalAchievement;public long getTotalTarget() {return totalTarget;}public void setTotalTarget(long totalTarget) {this.totalTarget = totalTarget;}public long getTotalAchievement() {return totalAchievement;}public void setTotalAchievement(long totalAchievement) {this.totalAchievement = totalAchievement;}@Overridepublic String toString() {return "TotalTargetColectionModel [totalTarget=" + totalTarget + ", totalAchievement=" + totalAchievement + "]";}}