Rev 27738 | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.model;public class OpenPoItemModel {private String brand;private String modelName;private String modelNumber;private String color;private float value;private int qty;public OpenPoItemModel(String brand, String modelName, String modelNumber, String color, float value, int qty) {super();this.brand = brand;this.modelName = modelName;this.modelNumber = modelNumber;this.color = color;this.value = value;this.qty = qty;}public String getColor() {return color;}public void setColor(String color) {this.color = color;}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 float getValue() {return value;}public void setValue(float value) {this.value = value;}public int getQty() {return qty;}public void setQty(int qty) {this.qty = qty;}@Overridepublic String toString() {return "OpenPoItemModel [brand=" + brand + ", modelName=" + modelName + ", modelNumber=" + modelNumber+ ", color=" + color + ", value=" + value + ", qty=" + qty + "]";}}