Rev 28020 | 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 FofoIdItemDetailModel {private int fofoId;private long qty;private String brand;private String modelName;private String modelNumber;private int catalogItemId;public FofoIdItemDetailModel(int fofoId, long qty, String brand, String modelName, String modelNumber,int catalogItemId) {super();this.fofoId = fofoId;this.qty = qty;this.brand = brand;this.modelName = modelName;this.modelNumber = modelNumber;this.catalogItemId = catalogItemId;}public int getFofoId() {return fofoId;}public void setFofoId(int fofoId) {this.fofoId = fofoId;}public long getQty() {return qty;}public void setQty(long qty) {this.qty = qty;}public String getBrand() {return brand;}public void setBrand(String brand) {this.brand = brand;}public String getModelName() {return modelName;}public void setModelName(String modelName) {this.modelName = modelName;}public String getModelNumber() {return modelNumber;}public void setModelNumber(String modelNumber) {this.modelNumber = modelNumber;}public int getCatalogItemId() {return catalogItemId;}public void setCatalogItemId(int catalogItemId) {this.catalogItemId = catalogItemId;}@Overridepublic String toString() {return "FofoIdItemDetailModel [fofoId=" + fofoId + ", qty=" + qty + ", brand=" + brand + ", modelName="+ modelName + ", modelNumber=" + modelNumber + ", catalogItemId=" + catalogItemId + "]";}}