Add files via upload

This commit is contained in:
gopi17701 2018-07-23 13:26:14 -04:00 committed by GitHub
parent b92de8a936
commit cd56ed1ab4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 26 additions and 20 deletions

View File

@ -6,8 +6,8 @@ public class InvoiceDetailRequest {
int poLineItemNum; int poLineItemNum;
int serviceTypeId; int serviceTypeId;
String desc; String desc;
double percentCompletion; double qty;
double hours; double fee;
public String getInvoiceNum() { public String getInvoiceNum() {
return invoiceNum; return invoiceNum;
@ -49,29 +49,19 @@ public class InvoiceDetailRequest {
this.desc = desc; this.desc = desc;
} }
public double getPercentCompletion() { public double getQty() {
return percentCompletion; return qty;
} }
public void setPercentCompletion(double percentCompletion) { public void setQty(double qty) {
this.percentCompletion = percentCompletion; this.qty = qty;
} }
public double getHours() { public double getFee() {
return hours; return fee;
} }
public void setHours(double hours) { public void setFee(double fee) {
this.hours = hours; this.fee = fee;
} }
public double getAnount() {
return anount;
}
public void setAnount(double anount) {
this.anount = anount;
}
double anount;
} }

View File

@ -8,6 +8,7 @@ public class PODetailRequest {
String serviceDesc; String serviceDesc;
int feeTypeId; int feeTypeId;
Double qty; Double qty;
Double fee;
int serviceTypeId; int serviceTypeId;
public String getPoNum() { public String getPoNum() {
@ -50,6 +51,14 @@ public class PODetailRequest {
this.qty = qty; this.qty = qty;
} }
public Double getFee() {
return fee;
}
public void setFee(Double fee) {
this.fee = fee;
}
public int getServiceTypeId() { public int getServiceTypeId() {
return serviceTypeId; return serviceTypeId;
} }

View File

@ -9,6 +9,7 @@ public class POMasterRequest {
Date PODate; Date PODate;
Double contractAmt; Double contractAmt;
Integer customerId; Integer customerId;
String astuteProjectNumber;
public String getPoNum() { public String getPoNum() {
return poNum; return poNum;
@ -50,5 +51,11 @@ public class POMasterRequest {
this.customerId = customerId; this.customerId = customerId;
} }
public String getAstuteProjectNumber() {
return astuteProjectNumber;
}
public void setAstuteProjectNumber(String astuteProjectNumber) {
this.astuteProjectNumber = astuteProjectNumber;
}
} }