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 serviceTypeId;
String desc;
double percentCompletion;
double hours;
double qty;
double fee;
public String getInvoiceNum() {
return invoiceNum;
@ -49,29 +49,19 @@ public class InvoiceDetailRequest {
this.desc = desc;
}
public double getPercentCompletion() {
return percentCompletion;
public double getQty() {
return qty;
}
public void setPercentCompletion(double percentCompletion) {
this.percentCompletion = percentCompletion;
public void setQty(double qty) {
this.qty = qty;
}
public double getHours() {
return hours;
public double getFee() {
return fee;
}
public void setHours(double hours) {
this.hours = hours;
public void setFee(double fee) {
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;
int feeTypeId;
Double qty;
Double fee;
int serviceTypeId;
public String getPoNum() {
@ -50,6 +51,14 @@ public class PODetailRequest {
this.qty = qty;
}
public Double getFee() {
return fee;
}
public void setFee(Double fee) {
this.fee = fee;
}
public int getServiceTypeId() {
return serviceTypeId;
}

View File

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