Rev 21640 | 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 ItemIdTypeQuantity {private int itemId;private String type;private int quantity;public ItemIdTypeQuantity(int itemId, String type, int quantity){this.itemId = itemId;this.type = type;this.quantity = quantity;}public int getItemId() {return itemId;}public void setItemId(int itemId) {this.itemId = itemId;}public int getQuantity() {return quantity;}public void setQuantity(int quantity) {this.quantity = quantity;}public String getType() {return type;}public void setType(String type) {this.type = type;}}