Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.service.inventory;import java.util.List;public class Combo {private int catalogId;private int qty;private List<Integer> warehouseId;private List<MappedComboModel> mappedComboModel;public int getCatalogId() {return catalogId;}public void setCatalogId(int catalogId) {this.catalogId = catalogId;}public List<MappedComboModel> getMappedComboModel() {return mappedComboModel;}public void setMappedComboModel(List<MappedComboModel> mappedComboModel) {this.mappedComboModel = mappedComboModel;}public int getQty() {return qty;}public void setQty(int qty) {this.qty = qty;}public List<Integer> getWarehouseId() {return warehouseId;}public void setWarehouseId(List<Integer> warehouseId) {this.warehouseId = warehouseId;}}