Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
4987 mandeep.dh 1
/**
2
 * 
3
 */
4
package in.shop2020.support.models;
5
 
6
/**
7
 * @author mandeep
8
 *
9
 */
10
public class PLBDetails {
11
    String itemKey;
12
    long quantity;
13
 
14
    public String getItemKey() {
15
        return itemKey;
16
    }
17
    public void setItemKey(String itemKey) {
18
        this.itemKey = itemKey;
19
    }
20
    public long getQuantity() {
21
        return quantity;
22
    }
23
    public void setQuantity(long quantity) {
24
        this.quantity = quantity;
25
    }
26
}