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
b7f1883fa2
commit
d64b89a09f
|
@ -13,10 +13,10 @@ public class Customer {
|
||||||
int zip;
|
int zip;
|
||||||
int ziplast4;
|
int ziplast4;
|
||||||
String email;
|
String email;
|
||||||
int phone;
|
Long phone;
|
||||||
int fax;
|
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.customerId = customerId;
|
||||||
this.customerName = customerName;
|
this.customerName = customerName;
|
||||||
this.billToDept = billToDept;
|
this.billToDept = billToDept;
|
||||||
|
@ -111,19 +111,19 @@ public class Customer {
|
||||||
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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,16 +9,18 @@ public class PO implements Serializable{
|
||||||
private String contractNum;
|
private String contractNum;
|
||||||
private Date PODate;
|
private Date PODate;
|
||||||
private Double contractAmt;
|
private Double contractAmt;
|
||||||
private String customerId;
|
private String customerId;
|
||||||
private String astuteProjectNumber;
|
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.PONum = PONum;
|
||||||
this.contractNum = contractNum;
|
this.contractNum = contractNum;
|
||||||
this.PODate = PODate;
|
this.PODate = PODate;
|
||||||
this.customerId = customerId;
|
this.customerId = customerId;
|
||||||
this.contractAmt = contractAmt;
|
this.contractAmt = contractAmt;
|
||||||
this.astuteProjectNumber = astuteProjectNum;
|
this.astuteProjectNumber = astuteProjectNum;
|
||||||
|
this.title = title;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -71,4 +73,12 @@ public class PO implements Serializable{
|
||||||
public void setAstuteProjectNumber(String astuteProjectNumber) {
|
public void setAstuteProjectNumber(String astuteProjectNumber) {
|
||||||
this.astuteProjectNumber = 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