Rev 27739 | 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 lms;private long todayQty;private long threedaysQty;private long mtdQty;private long lmtdQty;private long lmsQty;public BrandWiseTertiaryModel(String brand, long todayValue, long threedaysValue, long mtd, long lmtd, long lms,long todayQty, long threedaysQty, long mtdQty, long lmtdQty, long lmsQty) {super();this.brand = brand;this.todayValue = todayValue;this.threedaysValue = threedaysValue;this.mtd = mtd;this.lmtd = lmtd;this.lms = lms;this.todayQty = todayQty;this.threedaysQty = threedaysQty;this.mtdQty = mtdQty;this.lmtdQty = lmtdQty;this.lmsQty = lmsQty;}public BrandWiseTertiaryModel() {super();// TODO Auto-generated constructor stub}public long getLms() {return lms;}public void setLms(long lms) {this.lms = lms;}public long getLmsQty() {return lmsQty;}public void setLmsQty(long lmsQty) {this.lmsQty = lmsQty;}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 + ", lms=" + lms + ", todayQty=" + todayQty+ ", threedaysQty=" + threedaysQty + ", mtdQty=" + mtdQty + ", lmtdQty=" + lmtdQty + ", lmsQty="+ lmsQty + "]";}}