Subversion Repositories SmartDukaan

Rev

Rev 21633 | Rev 21924 | 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;

import in.shop2020.model.v1.catalog.ItemType;

public class ItemIdTypeQuantity {
        private int itemId;
        private ItemType type;
        private float quantity;
        
        public ItemIdTypeQuantity(int itemId, ItemType type, float quantity){
                this.itemId = itemId;
                this.type = type;
                this.quantity = quantity;
        }
        
        public int getItemId() {
                return itemId;
        }
        public void setItemId(int itemId) {
                this.itemId = itemId;
        }
        public float getQuantity() {
                return quantity;
        }
        public void setQuantity(float quantity) {
                this.quantity = quantity;
        }
        public ItemType getType() {
                return type;
        }
        public void setType(ItemType type) {
                this.type = type;
        }
}