Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7996 anupam.sin 1
package in.shop2020.recharge.auxiliary;
2
 
3
public class BulkRechargeInfo {
4
 
5
    private String name;
6
    private String number;
7
    private Long amount;
8
    private Long operator;
9
    private Long circle;
10
    private Long storeId;
11
    private String ipAddress;
12
 
13
    public String getName() {
14
        return name;
15
    }
16
    public void setName(String name) {
17
        this.name = name;
18
    }
19
    public String getNumber() {
20
        return number;
21
    }
22
    public void setNumber(String number) {
23
        this.number = number;
24
    }
25
    public Long getAmount() {
26
        return amount;
27
    }
28
    public void setAmount(Long amount) {
29
        this.amount = amount;
30
    }
31
    public Long getOperator() {
32
        return operator;
33
    }
34
    public void setOperator(Long operator) {
35
        this.operator = operator;
36
    }
37
    public Long getCircle() {
38
        return circle;
39
    }
40
    public void setCircle(Long circle) {
41
        this.circle = circle;
42
    }
43
    public void setStoreId(Long storeId) {
44
        this.storeId = storeId;
45
    }
46
    public Long getStoreId() {
47
        return storeId;
48
    }
49
    public void setIpAddress(String ipAddress) {
50
        this.ipAddress = ipAddress;
51
    }
52
    public String getIpAddress() {
53
        return ipAddress;
54
    }
55
 
56
 
57
}