Subversion Repositories SmartDukaan

Rev

Rev 2105 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package in.shop2020.catalog.dashboard.shared;

import java.io.Serializable;

import com.google.gwt.user.client.rpc.IsSerializable;

public class VendorPricings implements IsSerializable, Serializable {
    long vendorId;
    double mop, dealerPrice, transferPrice;
    
    public VendorPricings() {
        
    }
    
    public VendorPricings(long vendorId, String itemKey, double mop, double dp, double tp) {
        this.vendorId = vendorId;
        this.mop = mop;
        this.dealerPrice = dp;
        this.transferPrice = tp;
    }
    
    public long getVendorId() {
        return vendorId;
    }
    public void setVendorId(long vendorId) {
        this.vendorId = vendorId;
    }
    public double getMop() {
        return mop;
    }
    public void setMop(double mop) {
        this.mop = mop;
    }
    public double getDealerPrice() {
        return dealerPrice;
    }
    public void setDealerPrice(double dealerPrice) {
        this.dealerPrice = dealerPrice;
    }
    public double getTransferPrice() {
        return transferPrice;
    }
    public void setTransferPrice(double transferPrice) {
        this.transferPrice = transferPrice;
    }
}