Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5504 phani.kuma 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
@SuppressWarnings("serial")
8
public class VoucherItemMapping implements IsSerializable, Serializable {
9
    long amount;
10
    String voucherType;
11
 
12
    public VoucherItemMapping() {
13
 
14
    }
15
 
16
    public VoucherItemMapping(long amount, String voucherType) {
17
        this.amount = amount;
18
        this.voucherType = voucherType;
19
    }
20
 
21
    public long getAmount() {
22
        return amount;
23
    }
24
 
25
    public void setAmount(long amount) {
26
        this.amount = amount;
27
    }
28
 
29
    public String getVoucherType() {
30
        return voucherType;
31
    }
32
 
33
    public void setVoucherType(String voucherType) {
34
        this.voucherType = voucherType;
35
    }
36
}