Add files via upload

This commit is contained in:
gopi17701 2018-07-17 22:31:52 -04:00 committed by GitHub
parent 4063dc6369
commit b77b25278d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,27 +4,18 @@ import java.sql.Date;
public class POMasterRequest {
private String PONum;
private String contractNum;
String poNum;
String contractNum;
Date PODate;
Double contractAmt;
Integer customerId;
public Integer getCustomerId() {
return customerId;
public String getPoNum() {
return poNum;
}
public void setCustomerId(Integer customerId) {
this.customerId = customerId;
}
private Date PODate;
private Double contractAmt;
private Integer customerId;
public String getPONum() {
return PONum;
}
public void setPONum(String PONum) {
this.PONum = PONum;
public void setPoNum(String poNum) {
this.poNum = poNum;
}
public String getContractNum() {
@ -51,5 +42,13 @@ public class POMasterRequest {
this.contractAmt = contractAmt;
}
public Integer getCustomerId() {
return customerId;
}
public void setCustomerId(Integer customerId) {
this.customerId = customerId;
}
}