Blame | Last modification | View Log | RSS feed
package in.shop2020.recharge.auxiliary;public class BulkRechargeInfo {private String name;private String number;private Long amount;private Long operator;private Long circle;private Long storeId;private String ipAddress;public String getName() {return name;}public void setName(String name) {this.name = name;}public String getNumber() {return number;}public void setNumber(String number) {this.number = number;}public Long getAmount() {return amount;}public void setAmount(Long amount) {this.amount = amount;}public Long getOperator() {return operator;}public void setOperator(Long operator) {this.operator = operator;}public Long getCircle() {return circle;}public void setCircle(Long circle) {this.circle = circle;}public void setStoreId(Long storeId) {this.storeId = storeId;}public Long getStoreId() {return storeId;}public void setIpAddress(String ipAddress) {this.ipAddress = ipAddress;}public String getIpAddress() {return ipAddress;}}