Add files via upload

This commit is contained in:
gopi17701 2018-08-15 14:50:35 -04:00 committed by GitHub
parent bd59fb2f2c
commit d9d619eb01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,6 +10,7 @@ public class PODetailRequest {
Double qty;
Double fee;
int serviceTypeId;
Double remainingQuantity;
public String getPoNum() {
return poNum;
@ -66,4 +67,12 @@ public class PODetailRequest {
public void setServiceTypeId(int serviceTypeId) {
this.serviceTypeId = serviceTypeId;
}
public Double getRemainingQuantity() {
return remainingQuantity;
}
public void setRemainingQuantity(Double remainingQuantity) {
this.remainingQuantity = remainingQuantity;
}
}