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 OurPurchaseModel {private String brand;private long todayValue;private long threedaysValue;private long fifteendaysValue;private long mtd;private long todayQty;private long threedaysQty;private long fifteendaysQty;private long mtdQty;public OurPurchaseModel(String brand, long todayValue, long threedaysValue, long fifteendaysValue, long mtd,long todayQty, long threedaysQty, long fifteendaysQty, long mtdQty) {super();this.brand = brand;this.todayValue = todayValue;this.threedaysValue = threedaysValue;this.fifteendaysValue = fifteendaysValue;this.mtd = mtd;this.todayQty = todayQty;this.threedaysQty = threedaysQty;this.fifteendaysQty = fifteendaysQty;this.mtdQty = mtdQty;}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 getFifteendaysQty() {return fifteendaysQty;}public void setFifteendaysQty(long fifteendaysQty) {this.fifteendaysQty = fifteendaysQty;}public long getMtdQty() {return mtdQty;}public void setMtdQty(long mtdQty) {this.mtdQty = mtdQty;}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 getFifteendaysValue() {return fifteendaysValue;}public void setFifteendaysValue(long fifteendaysValue) {this.fifteendaysValue = fifteendaysValue;}public long getMtd() {return mtd;}public void setMtd(long mtd) {this.mtd = mtd;}@Overridepublic String toString() {return "OurPurchaseModel [brand=" + brand + ", todayValue=" + todayValue + ", threedaysValue=" + threedaysValue+ ", fifteendaysValue=" + fifteendaysValue + ", mtd=" + mtd + ", todayQty=" + todayQty+ ", threedaysQty=" + threedaysQty + ", fifteendaysQty=" + fifteendaysQty + ", mtdQty=" + mtdQty + "]";}}