mirror of
https://github.com/dyiop/astute.git
synced 2025-04-05 21:10:16 -04:00
Add files via upload
This commit is contained in:
parent
61b51798fc
commit
f30fe8c6e8
|
@ -13,8 +13,8 @@ public class CustomerRequest {
|
|||
int zip;
|
||||
int ziplast4;
|
||||
String email;
|
||||
Long phone;
|
||||
Long fax;
|
||||
String phone;
|
||||
String fax;
|
||||
|
||||
public String getCustomerId() {
|
||||
return customerId;
|
||||
|
@ -96,19 +96,19 @@ public class CustomerRequest {
|
|||
this.email = email;
|
||||
}
|
||||
|
||||
public Long getPhone() {
|
||||
public String getPhone() {
|
||||
return phone;
|
||||
}
|
||||
|
||||
public void setPhone(Long phone) {
|
||||
public void setPhone(String phone) {
|
||||
this.phone = phone;
|
||||
}
|
||||
|
||||
public Long getFax() {
|
||||
public String getFax() {
|
||||
return fax;
|
||||
}
|
||||
|
||||
public void setFax(Long fax) {
|
||||
public void setFax(String fax) {
|
||||
this.fax = fax;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user