Add files via upload

This commit is contained in:
gopi17701 2018-07-31 15:56:52 -04:00 committed by GitHub
parent 590e967c66
commit 1f6c1c4d57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 12 deletions

View File

@ -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;
}
}

View File

@ -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;
}