Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3558 rajveer 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
/**
8
 * Vendor prices bean to store mop, dealer price and transfer price for a vendor.
9
 *
10
 */
11
@SuppressWarnings("serial")
12
public class SourcePricings implements IsSerializable, Serializable {
13
    long sourceId;
14
    double mrp, sellingPrice;
15
 
16
    public SourcePricings() {
17
 
18
    }
19
 
20
    public SourcePricings(long sourceId, String itemKey, double mrp, double sellingPrice) {
21
        this.sourceId = sourceId;
22
        this.mrp = mrp;
23
        this.sellingPrice = sellingPrice;
24
    }
25
 
26
    public long getSourceId() {
27
        return sourceId;
28
    }
29
    public void setSourceId(long sourceId) {
30
        this.sourceId = sourceId;
31
    }
32
    public double getMrp() {
33
        return mrp;
34
    }
35
    public void setMrp(double mrp) {
36
        this.mrp = mrp;
37
    }
38
    public double getSellingPrice() {
39
        return sellingPrice;
40
    }
41
    public void setSellingPrice(double sellingPrice) {
42
        this.sellingPrice = sellingPrice;
43
    }
44
}