Add files via upload

This commit is contained in:
gopi17701 2018-08-23 13:22:18 -04:00 committed by GitHub
parent 61b51798fc
commit f30fe8c6e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,8 +13,8 @@ public class CustomerRequest {
int zip; int zip;
int ziplast4; int ziplast4;
String email; String email;
Long phone; String phone;
Long fax; String fax;
public String getCustomerId() { public String getCustomerId() {
return customerId; return customerId;
@ -96,19 +96,19 @@ public class CustomerRequest {
this.email = email; this.email = email;
} }
public Long getPhone() { public String getPhone() {
return phone; return phone;
} }
public void setPhone(Long phone) { public void setPhone(String phone) {
this.phone = phone; this.phone = phone;
} }
public Long getFax() { public String getFax() {
return fax; return fax;
} }
public void setFax(Long fax) { public void setFax(String fax) {
this.fax = fax; this.fax = fax;
} }
} }