Rev 21686 | Rev 21923 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.common.model;import com.spice.profitmandi.common.model.CustomAddress;public class CustomCustomer {private String name;private String emailId;private String mobileNumber;private int customerAddressId;private CustomAddress address;public String getName() {return name;}public void setName(String name) {this.name = name;}public String getEmailId() {return emailId;}public void setEmailId(String emailId) {this.emailId = emailId;}public String getMobileNumber() {return mobileNumber;}public void setMobileNumber(String mobileNumber) {this.mobileNumber = mobileNumber;}public CustomAddress getAddress() {return address;}public void setAddress(CustomAddress address) {this.address = address;}public int getCustomerAddressId() {return customerAddressId;}public void setCustomerAddressId(int customerAddressId) {this.customerAddressId = customerAddressId;}@Overridepublic String toString() {return "CustomCustomer [name=" + name + ", emailId=" + emailId + ", mobileNumber=" + mobileNumber + ", address="+ address + ", customerAddressId=" + customerAddressId + "]";}}