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
c43cfdf562
commit
590e967c66
|
@ -3,7 +3,7 @@ package com.astute.model;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
|
||||||
public class Customer {
|
public class Customer {
|
||||||
int customerId;
|
String customerId;
|
||||||
String customerName;
|
String customerName;
|
||||||
String billToDept;
|
String billToDept;
|
||||||
String add1;
|
String add1;
|
||||||
|
@ -16,7 +16,7 @@ public class Customer {
|
||||||
int phone;
|
int phone;
|
||||||
int fax;
|
int fax;
|
||||||
|
|
||||||
public Customer(int 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, int phone, int fax) {
|
||||||
this.customerId = customerId;
|
this.customerId = customerId;
|
||||||
this.customerName = customerName;
|
this.customerName = customerName;
|
||||||
this.billToDept = billToDept;
|
this.billToDept = billToDept;
|
||||||
|
@ -31,11 +31,11 @@ public class Customer {
|
||||||
this.fax = fax;
|
this.fax = 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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,10 +9,10 @@ public class PO implements Serializable{
|
||||||
private String contractNum;
|
private String contractNum;
|
||||||
private Date PODate;
|
private Date PODate;
|
||||||
private Double contractAmt;
|
private Double contractAmt;
|
||||||
private Integer customerId;
|
private String customerId;
|
||||||
private String astuteProjectNumber;
|
private String astuteProjectNumber;
|
||||||
|
|
||||||
public PO(String PONum, String contractNum, Date PODate, Integer customerId, Double contractAmt, String astuteProjectNum) {
|
public PO(String PONum, String contractNum, Date PODate, String customerId, Double contractAmt, String astuteProjectNum) {
|
||||||
this.PONum = PONum;
|
this.PONum = PONum;
|
||||||
this.contractNum = contractNum;
|
this.contractNum = contractNum;
|
||||||
this.PODate = PODate;
|
this.PODate = PODate;
|
||||||
|
@ -56,11 +56,11 @@ public class PO implements Serializable{
|
||||||
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