Add files via upload

This commit is contained in:
gopi17701 2018-07-24 17:20:08 -04:00 committed by GitHub
parent b45c0c5c71
commit 8c49bacf25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,12 +12,13 @@ public class PO implements Serializable{
private Integer customerId; private Integer customerId;
private String astuteProjectNumber; private String astuteProjectNumber;
public PO(String PONum, String contractNum, Date PODate, Integer customerId, Double contractAmt) { public PO(String PONum, String contractNum, Date PODate, Integer customerId, Double contractAmt, String astuteProjectNum) {
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;
} }