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
590e967c66
commit
1f6c1c4d57
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user