Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.common.model;

import java.io.Serializable;

public class DebitNoteLineInfo implements Serializable {

    private static final long serialVersionUID = 1L;

    private int itemId;
    private float quantity;
    private float unitPrice;
    private String productName;

    private float cgstRate;
    private float sgstRate;
    private float igstRate;

    public DebitNoteLineInfo() {
    }

    public DebitNoteLineInfo(int itemId, float quantity, float unitPrice, String productName,
                             float cgstRate, float sgstRate, float igstRate) {
        this.itemId = itemId;
        this.quantity = quantity;
        this.unitPrice = unitPrice;
        this.productName = productName;
        this.cgstRate = cgstRate;
        this.sgstRate = sgstRate;
        this.igstRate = igstRate;
    }

    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 float getUnitPrice() {
        return unitPrice;
    }

    public void setUnitPrice(float unitPrice) {
        this.unitPrice = unitPrice;
    }

    public String getProductName() {
        return productName;
    }

    public void setProductName(String productName) {
        this.productName = productName;
    }

    public float getCgstRate() {
        return cgstRate;
    }

    public void setCgstRate(float cgstRate) {
        this.cgstRate = cgstRate;
    }

    public float getSgstRate() {
        return sgstRate;
    }

    public void setSgstRate(float sgstRate) {
        this.sgstRate = sgstRate;
    }

    public float getIgstRate() {
        return igstRate;
    }

    public void setIgstRate(float igstRate) {
        this.igstRate = igstRate;
    }
}