Add files via upload

This commit is contained in:
gopi17701 2018-08-22 14:59:36 -04:00 committed by GitHub
parent b7f1883fa2
commit d64b89a09f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 9 deletions

View File

@ -13,10 +13,10 @@ public class Customer {
int zip;
int ziplast4;
String email;
int phone;
int fax;
Long phone;
Long fax;
public Customer(String customerId, String customerName, String billToDept, String add1, String add2, String city, String state, int zip, int ziplast4, String email, int phone, int fax) {
public Customer(String customerId, String customerName, String billToDept, String add1, String add2, String city, String state, int zip, int ziplast4, String email, Long phone, Long fax) {
this.customerId = customerId;
this.customerName = customerName;
this.billToDept = billToDept;
@ -111,19 +111,19 @@ public class Customer {
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

@ -9,16 +9,18 @@ public class PO implements Serializable{
private String contractNum;
private Date PODate;
private Double contractAmt;
private String customerId;
private String customerId;
private String astuteProjectNumber;
private String title;
public PO(String PONum, String contractNum, Date PODate, String customerId, Double contractAmt, String astuteProjectNum) {
public PO(String PONum, String contractNum, Date PODate, String customerId, Double contractAmt, String astuteProjectNum, String title) {
this.PONum = PONum;
this.contractNum = contractNum;
this.PODate = PODate;
this.customerId = customerId;
this.contractAmt = contractAmt;
this.astuteProjectNumber = astuteProjectNum;
this.title = title;
}
@ -71,4 +73,12 @@ public class PO implements Serializable{
public void setAstuteProjectNumber(String astuteProjectNumber) {
this.astuteProjectNumber = astuteProjectNumber;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
}