diff --git a/AstuteSystem/src/main/java/com/astute/requests/CustomerRequest.java b/AstuteSystem/src/main/java/com/astute/requests/CustomerRequest.java index 211541f..48eaded 100644 --- a/AstuteSystem/src/main/java/com/astute/requests/CustomerRequest.java +++ b/AstuteSystem/src/main/java/com/astute/requests/CustomerRequest.java @@ -3,7 +3,7 @@ package com.astute.requests; import java.sql.Date; public class CustomerRequest { - int customerId; + String customerId; String customerName; String billToDept; String add1; @@ -13,14 +13,14 @@ public class CustomerRequest { int zip; int ziplast4; String email; - int phone; - int fax; + Long phone; + Long fax; - public int getCustomerId() { + public String getCustomerId() { return customerId; } - public void setCustomerId(int customerId) { + public void setCustomerId(String customerId) { this.customerId = customerId; } @@ -96,19 +96,19 @@ public class CustomerRequest { this.email = email; } - public int getPhone() { + public Long getPhone() { return phone; } - public void setPhone(int phone) { + public void setPhone(Long phone) { this.phone = phone; } - public int getFax() { + public Long getFax() { return fax; } - public void setFax(int fax) { + public void setFax(Long fax) { this.fax = fax; } } diff --git a/AstuteSystem/src/main/java/com/astute/requests/POMasterRequest.java b/AstuteSystem/src/main/java/com/astute/requests/POMasterRequest.java index 3af3e3f..a5ed4b0 100644 --- a/AstuteSystem/src/main/java/com/astute/requests/POMasterRequest.java +++ b/AstuteSystem/src/main/java/com/astute/requests/POMasterRequest.java @@ -8,7 +8,7 @@ public class POMasterRequest { String contractNum; String PODate; Double contractAmt; - Integer customerId; + String customerId; String astuteProjectNumber; public String getPoNum() { @@ -43,11 +43,11 @@ public class POMasterRequest { this.contractAmt = contractAmt; } - public Integer getCustomerId() { + public String getCustomerId() { return customerId; } - public void setCustomerId(Integer customerId) { + public void setCustomerId(String customerId) { this.customerId = customerId; }