Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.model;import com.spice.profitmandi.dao.entity.fofo.CustomerAddress;public class AddAmountToWalletModel {private String paymentMethod;private int orderId;private long orderAmount;private long customerId;private int customerAddressId;private CustomerAddress customerAddress;private long fofoId;private String paymentType;public AddAmountToWalletModel() {}public String getPaymentMethod() {return paymentMethod;}public void setPaymentMethod(String paymentMethod) {this.paymentMethod = paymentMethod;}public int getOrderId() {return orderId;}public void setOrderId(int orderId) {this.orderId = orderId;}public long getOrderAmount() {return orderAmount;}public void setOrderAmount(long orderAmount) {this.orderAmount = orderAmount;}public long getCustomerId() {return customerId;}public void setCustomerId(long customerId) {this.customerId = customerId;}public int getCustomerAddressId() {return customerAddressId;}public void setCustomerAddressId(int customerAddressId) {this.customerAddressId = customerAddressId;}public CustomerAddress getCustomerAddress() {return customerAddress;}public void setCustomerAddress(CustomerAddress customerAddress) {this.customerAddress = customerAddress;}public long getFofoId() {return fofoId;}public void setFofoId(long fofoId) {this.fofoId = fofoId;}public String getPaymentType() {return paymentType;}public void setPaymentType(String paymentType) {this.paymentType = paymentType;}@Overridepublic String toString() {return "AddAmountToWalletModel{" +"paymentMethod='" + paymentMethod + '\'' +", orderId=" + orderId +", orderAmount=" + orderAmount +", customerId=" + customerId +", customerAddressId=" + customerAddressId +", customerAddress=" + customerAddress +", fofoId=" + fofoId +", paymentType='" + paymentType + '\'' +'}';}}