Subversion Repositories SmartDukaan

Rev

Rev 33213 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.common.model;

public class BulkOrderModel {
    private int rowIndex;
    private String partnerName;
    private String description;
    private int fofoId;
    private int itemId;
    private double itemPrice;
    private int quantity;

    public BulkOrderModel() {
    }

    public BulkOrderModel(int rowIndex, String name, String discription, int fofoId, int itemId, double itemPrice, int quantity) {
        this.rowIndex = rowIndex;
        this.partnerName = name;
        this.description = discription;
        this.fofoId = fofoId;
        this.itemId = itemId;
        this.itemPrice = itemPrice;
        this.quantity = quantity;
    }

    public int getRowIndex() {
        return rowIndex;
    }

    public void setRowIndex(int rowIndex) {
        this.rowIndex = rowIndex;
    }

    public String getPartnerName() {
        return partnerName;
    }

    public void setPartnerName(String partnerName) {
        this.partnerName = partnerName;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public int getFofoId() {
        return fofoId;
    }

    public void setFofoId(int fofoId) {
        this.fofoId = fofoId;
    }

    public int getItemId() {
        return itemId;
    }

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

    public int getQuantity() {
        return quantity;
    }

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

    public double getItemPrice() {
        return itemPrice;
    }

    public void setItemPrice(double itemPrice) {
        this.itemPrice = itemPrice;
    }

    @Override
    public String toString() {
        return "BulkOrderModel{" +
                "rowIndex=" + rowIndex +
                ", partnerName='" + partnerName + '\'' +
                ", description='" + description + '\'' +
                ", fofoId=" + fofoId +
                ", itemId=" + itemId +
                ", itemPrice=" + itemPrice +
                ", quantity=" + quantity +
                '}';
    }
}