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

View File

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