Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.model;import com.spice.profitmandi.dao.enumuration.catalog.AmountType;public class PayoutSlabModel {AmountType amountType;private int target;private double value;public int getTarget() {return target;}public void setTarget(int target) {this.target = target;}public double getValue() {return value;}public void setValue(double value) {this.value = value;}public AmountType getAmountType() {return amountType;}public void setAmountType(AmountType amountType) {this.amountType = amountType;}@Overridepublic String toString() {return "PayoutSlabModel{" +"target=" + target +", value=" + value +", amountType=" + amountType +'}';}}