Subversion Repositories SmartDukaan

Rev

Rev 21730 | Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.web.req;

public class CartItems
{       
    private long quantity;
        private int itemId;

    public long getQuantity() {
                return quantity;
        }

        public void setQuantity(long quantity) {
                this.quantity = quantity;
        }

        public int getItemId() {
                return itemId;
        }

        public void setItemId(int itemId) {
                this.itemId = itemId;
        }
        
        @Override
        public String toString() {
                return "CartItems [quantity=" + quantity + ", itemId=" + itemId + "]";
        }

}