Rev 32227 | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.model;public class RetailerFilterModel {private boolean credit;private boolean billing;private Integer investmentPct;private Integer secondaryDays;private Integer tertiaryDays;private Integer mtdsPct;private Integer mtdtPct;public boolean isCredit() {return credit;}public void setCredit(boolean credit) {this.credit = credit;}public boolean isBilling() {return billing;}public void setBilling(boolean billing) {this.billing = billing;}public Integer getInvestmentPct() {return investmentPct;}public void setInvestmentPct(Integer investmentPct) {this.investmentPct = investmentPct;}public Integer getSecondaryDays() {return secondaryDays;}public void setSecondaryDays(Integer secondaryDays) {this.secondaryDays = secondaryDays;}public Integer getTertiaryDays() {return tertiaryDays;}public void setTertiaryDays(Integer tertiaryDays) {this.tertiaryDays = tertiaryDays;}public Integer getMtdsPct() {return mtdsPct;}public void setMtdsPct(Integer mtdsPct) {this.mtdsPct = mtdsPct;}public Integer getMtdtPct() {return mtdtPct;}public void setMtdtPct(Integer mtdtPct) {this.mtdtPct = mtdtPct;}@Overridepublic String toString() {return "RetailerFilterModel [credit=" + credit + ", billing=" + billing + ", investmentPct=" + investmentPct + ", secondaryDays=" + secondaryDays + ", tertiaryDays=" + tertiaryDays + ", mtdsPct=" + mtdsPct + ", mtdtPct=" + mtdtPct + "]";}}