Rev 27739 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.model;public class BrandWiseTertiaryModel {private String brand;private long todayValue;private long threedaysValue;private long mtd;private long lmtd;private long todayQty;private long threedaysQty;private long mtdQty;private long lmtdQty;public BrandWiseTertiaryModel(String brand, long todayValue, long threedaysValue, long mtd, long lmtd,long todayQty, long threedaysQty, long mtdQty, long lmtdQty) {super();this.brand = brand;this.todayValue = todayValue;this.threedaysValue = threedaysValue;this.mtd = mtd;this.lmtd = lmtd;this.todayQty = todayQty;this.threedaysQty = threedaysQty;this.mtdQty = mtdQty;this.lmtdQty = lmtdQty;}public String getBrand() {return brand;}public void setBrand(String brand) {this.brand = brand;}public long getTodayValue() {return todayValue;}public void setTodayValue(long todayValue) {this.todayValue = todayValue;}public long getThreedaysValue() {return threedaysValue;}public void setThreedaysValue(long threedaysValue) {this.threedaysValue = threedaysValue;}public long getMtd() {return mtd;}public void setMtd(long mtd) {this.mtd = mtd;}public long getLmtd() {return lmtd;}public void setLmtd(long lmtd) {this.lmtd = lmtd;}public long getTodayQty() {return todayQty;}public void setTodayQty(long todayQty) {this.todayQty = todayQty;}public long getThreedaysQty() {return threedaysQty;}public void setThreedaysQty(long threedaysQty) {this.threedaysQty = threedaysQty;}public long getMtdQty() {return mtdQty;}public void setMtdQty(long mtdQty) {this.mtdQty = mtdQty;}public long getLmtdQty() {return lmtdQty;}public void setLmtdQty(long lmtdQty) {this.lmtdQty = lmtdQty;}@Overridepublic String toString() {return "BrandWiseTertiaryModel [brand=" + brand + ", todayValue=" + todayValue + ", threedaysValue="+ threedaysValue + ", mtd=" + mtd + ", lmtd=" + lmtd + ", todayQty=" + todayQty + ", threedaysQty="+ threedaysQty + ", mtdQty=" + mtdQty + ", lmtdQty=" + lmtdQty + "]";}}