mirror of
https://github.com/dyiop/astute.git
synced 2025-04-06 21:30:20 -04:00
Add files via upload
This commit is contained in:
parent
5e24d70a99
commit
b074ea9edd
|
@ -8,6 +8,7 @@ public class InvoiceDetailRequest {
|
||||||
String desc;
|
String desc;
|
||||||
double qty;
|
double qty;
|
||||||
double fee;
|
double fee;
|
||||||
|
int feeTypeId;
|
||||||
|
|
||||||
public String getInvoiceNum() {
|
public String getInvoiceNum() {
|
||||||
return invoiceNum;
|
return invoiceNum;
|
||||||
|
@ -64,4 +65,12 @@ public class InvoiceDetailRequest {
|
||||||
public void setFee(double fee) {
|
public void setFee(double fee) {
|
||||||
this.fee = fee;
|
this.fee = fee;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int getFeeTypeId() {
|
||||||
|
return feeTypeId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFeeTypeId(int feeTypeId) {
|
||||||
|
this.feeTypeId = feeTypeId;
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user