Subversion Repositories SmartDukaan

Rev

Rev 2105 | Rev 2427 | Go to most recent revision | Details | Compare with Previous | 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
 
2119 ankur.sing 7
public class VendorPricings implements IsSerializable, Serializable {
2105 ankur.sing 8
    long vendorId;
9
    double mop, dealerPrice, transferPrice;
10
 
2119 ankur.sing 11
    public VendorPricings() {
2105 ankur.sing 12
 
13
    }
14
 
2119 ankur.sing 15
    public VendorPricings(long vendorId, String itemKey, double mop, double dp, double tp) {
2105 ankur.sing 16
        this.vendorId = vendorId;
17
        this.mop = mop;
18
        this.dealerPrice = dp;
19
        this.transferPrice = tp;
20
    }
21
 
22
    public long getVendorId() {
23
        return vendorId;
24
    }
25
    public void setVendorId(long vendorId) {
26
        this.vendorId = vendorId;
27
    }
28
    public double getMop() {
29
        return mop;
30
    }
31
    public void setMop(double mop) {
32
        this.mop = mop;
33
    }
34
    public double getDealerPrice() {
35
        return dealerPrice;
36
    }
37
    public void setDealerPrice(double dealerPrice) {
38
        this.dealerPrice = dealerPrice;
39
    }
40
    public double getTransferPrice() {
41
        return transferPrice;
42
    }
43
    public void setTransferPrice(double transferPrice) {
44
        this.transferPrice = transferPrice;
45
    }
46
}