Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2105 ankur.sing 1
package in.shop2020.catalog.dashboard.shared;
2
 
3
import java.io.Serializable;
4
 
5
import com.google.gwt.user.client.rpc.IsSerializable;
6
 
7
public class VendorDetails implements IsSerializable, Serializable {
8
    long vendorId;
9
    String itemKey;
10
    double mop, dealerPrice, transferPrice;
11
 
12
    public VendorDetails() {
13
 
14
    }
15
 
16
    public VendorDetails(long vendorId, String itemKey, double mop, double dp, double tp) {
17
        this.vendorId = vendorId;
18
        this.itemKey = itemKey;
19
        this.mop = mop;
20
        this.dealerPrice = dp;
21
        this.transferPrice = tp;
22
    }
23
 
24
    public long getVendorId() {
25
        return vendorId;
26
    }
27
    public void setVendorId(long vendorId) {
28
        this.vendorId = vendorId;
29
    }
30
    public String getItemKey() {
31
        return itemKey;
32
    }
33
    public void setItemKey(String itemKey) {
34
        this.itemKey = itemKey;
35
    }
36
    public double getMop() {
37
        return mop;
38
    }
39
    public void setMop(double mop) {
40
        this.mop = mop;
41
    }
42
    public double getDealerPrice() {
43
        return dealerPrice;
44
    }
45
    public void setDealerPrice(double dealerPrice) {
46
        this.dealerPrice = dealerPrice;
47
    }
48
    public double getTransferPrice() {
49
        return transferPrice;
50
    }
51
    public void setTransferPrice(double transferPrice) {
52
        this.transferPrice = transferPrice;
53
    }
54
}