mirror of
https://github.com/dyiop/astute.git
synced 2025-04-06 21:30:20 -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;
|
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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user