mirror of
https://github.com/dyiop/astute.git
synced 2025-04-05 21:10:16 -04:00
Add files via upload
This commit is contained in:
parent
b92de8a936
commit
cd56ed1ab4
|
@ -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;
|
||||
}
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user