mirror of
https://github.com/dyiop/astute.git
synced 2025-04-18 19:20:16 -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 {
|
public class POMasterRequest {
|
||||||
|
|
||||||
private String PONum;
|
String poNum;
|
||||||
private String contractNum;
|
String contractNum;
|
||||||
|
Date PODate;
|
||||||
|
Double contractAmt;
|
||||||
|
Integer customerId;
|
||||||
|
|
||||||
public Integer getCustomerId() {
|
public String getPoNum() {
|
||||||
return customerId;
|
return poNum;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setCustomerId(Integer customerId) {
|
public void setPoNum(String poNum) {
|
||||||
this.customerId = customerId;
|
this.poNum = poNum;
|
||||||
}
|
|
||||||
|
|
||||||
private Date PODate;
|
|
||||||
private Double contractAmt;
|
|
||||||
private Integer customerId;
|
|
||||||
|
|
||||||
public String getPONum() {
|
|
||||||
return PONum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPONum(String PONum) {
|
|
||||||
this.PONum = PONum;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getContractNum() {
|
public String getContractNum() {
|
||||||
|
@ -51,5 +42,13 @@ public class POMasterRequest {
|
||||||
this.contractAmt = contractAmt;
|
this.contractAmt = contractAmt;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Integer getCustomerId() {
|
||||||
|
return customerId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCustomerId(Integer customerId) {
|
||||||
|
this.customerId = customerId;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user