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
c43cfdf562
commit
590e967c66
|
@ -3,7 +3,7 @@ package com.astute.model;
|
|||
import java.util.Date;
|
||||
|
||||
public class Customer {
|
||||
int customerId;
|
||||
String customerId;
|
||||
String customerName;
|
||||
String billToDept;
|
||||
String add1;
|
||||
|
@ -16,7 +16,7 @@ public class Customer {
|
|||
int phone;
|
||||
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.customerName = customerName;
|
||||
this.billToDept = billToDept;
|
||||
|
@ -31,11 +31,11 @@ public class Customer {
|
|||
this.fax = fax;
|
||||
}
|
||||
|
||||
public int getCustomerId() {
|
||||
public String getCustomerId() {
|
||||
return customerId;
|
||||
}
|
||||
|
||||
public void setCustomerId(int customerId) {
|
||||
public void setCustomerId(String customerId) {
|
||||
this.customerId = customerId;
|
||||
}
|
||||
|
||||
|
|
|
@ -9,10 +9,10 @@ public class PO implements Serializable{
|
|||
private String contractNum;
|
||||
private Date PODate;
|
||||
private Double contractAmt;
|
||||
private Integer customerId;
|
||||
private String customerId;
|
||||
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.contractNum = contractNum;
|
||||
this.PODate = PODate;
|
||||
|
@ -56,11 +56,11 @@ public class PO implements Serializable{
|
|||
this.contractAmt = contractAmt;
|
||||
}
|
||||
|
||||
public Integer getCustomerId() {
|
||||
public String getCustomerId() {
|
||||
return customerId;
|
||||
}
|
||||
|
||||
public void setCustomerId(Integer customerId) {
|
||||
public void setCustomerId(String customerId) {
|
||||
this.customerId = customerId;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user