Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
2119 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 VendorItemMapping implements IsSerializable, Serializable {
8
    long vendorId;
9
    String itemKey;
10
 
11
    public VendorItemMapping() {
12
 
13
    }
14
 
15
    public VendorItemMapping(long vendorId, String itemKey) {
16
        this.vendorId = vendorId;
17
        this.itemKey = itemKey;
18
    }
19
 
20
    public long getVendorId() {
21
        return vendorId;
22
    }
23
 
24
    public void setVendorId(long vendorId) {
25
        this.vendorId = vendorId;
26
    }
27
 
28
    public String getItemKey() {
29
        return itemKey;
30
    }
31
 
32
    public void setItemKey(String itemKey) {
33
        this.itemKey = itemKey;
34
    }
35
 
36
 
37
 
38
}