Subversion Repositories SmartDukaan

Rev

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 ItemWisePurchaseModel {

    private int itemId;
    private int qty;
    private float transferPrice;
    private float totalValue;

    public int getItemId() {
        return itemId;
    }

    public void setItemId(int itemId) {
        this.itemId = itemId;
    }

    public int getQty() {
        return qty;
    }

    public void setQty(int qty) {
        this.qty = qty;
    }

    public float getTransferPrice() {
        return transferPrice;
    }

    public void setTransferPrice(float transferPrice) {
        this.transferPrice = transferPrice;
    }

    public float getTotalValue() {
        return totalValue;
    }

    public void setTotalValue(float totalValue) {
        this.totalValue = totalValue;
    }

    @Override
    public String toString() {
        return "ItemWisePurchaseModel [itemId=" + itemId + ", qty=" + qty + ", transferPrice=" + transferPrice + ", totalValue=" + totalValue + "]";
    }


}