mirror of
https://github.com/dyiop/astute.git
synced 2025-04-08 14:20:20 -04:00
Add files via upload
This commit is contained in:
parent
4063dc6369
commit
b77b25278d
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user