Add files via upload

This commit is contained in:
gopi17701 2018-07-31 15:56:23 -04:00 committed by GitHub
parent c43cfdf562
commit 590e967c66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 8 deletions

View File

@ -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;
} }

View File

@ -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;
} }