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; import java.sql.Date;
public class CustomerRequest { public class CustomerRequest {
int customerId; String customerId;
String customerName; String customerName;
String billToDept; String billToDept;
String add1; String add1;
@ -13,14 +13,14 @@ public class CustomerRequest {
int zip; int zip;
int ziplast4; int ziplast4;
String email; String email;
int phone; Long phone;
int fax; Long fax;
public int getCustomerId() { public String getCustomerId() {
return customerId; return customerId;
} }
public void setCustomerId(int customerId) { public void setCustomerId(String customerId) {
this.customerId = customerId; this.customerId = customerId;
} }
@ -96,19 +96,19 @@ public class CustomerRequest {
this.email = email; this.email = email;
} }
public int getPhone() { public Long getPhone() {
return phone; return phone;
} }
public void setPhone(int phone) { public void setPhone(Long phone) {
this.phone = phone; this.phone = phone;
} }
public int getFax() { public Long getFax() {
return fax; return fax;
} }
public void setFax(int fax) { public void setFax(Long fax) {
this.fax = fax; this.fax = fax;
} }
} }

View File

@ -8,7 +8,7 @@ public class POMasterRequest {
String contractNum; String contractNum;
String PODate; String PODate;
Double contractAmt; Double contractAmt;
Integer customerId; String customerId;
String astuteProjectNumber; String astuteProjectNumber;
public String getPoNum() { public String getPoNum() {
@ -43,11 +43,11 @@ public class POMasterRequest {
this.contractAmt = contractAmt; this.contractAmt = contractAmt;
} }
public Integer getCustomerId() { public String getCustomerId() {
return customerId; return customerId;
} }
public void setCustomerId(Integer customerId) { public void setCustomerId(String customerId) {
this.customerId = customerId; this.customerId = customerId;
} }