Subversion Repositories SmartDukaan

Rev

Rev 32145 | 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 amendedQty;
    private float transferPrice;
    private float totalValue;

    public int getItemId() {
        return itemId;
    }

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


    public int getAmendedQty() {
        return amendedQty;
    }

    public void setAmendedQty(int amendedQty) {
        this.amendedQty = amendedQty;
    }

    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 + ", amendedQty=" + amendedQty + ", transferPrice=" + transferPrice + ", totalValue=" + totalValue + "]";
    }


}