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
b7f1883fa2
commit
d64b89a09f
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user