This commit is contained in:
lvleigang 2024-09-06 11:16:56 +08:00
commit 4f8936140a
1 changed files with 28 additions and 1 deletions

View File

@ -12,6 +12,9 @@ public class VoucherDetails {
private String localdebitamount;
private String pk_accsubj;
private String pk_currtype;
private String creditquantity;
private String debitquantity;
private String price;
public List<Ass> getAss() {
return ass;
@ -84,4 +87,28 @@ public class VoucherDetails {
public void setPk_currtype(String pk_currtype) {
this.pk_currtype = pk_currtype;
}
}
public String getCreditquantity() {
return creditquantity;
}
public void setCreditquantity(String creditquantity) {
this.creditquantity = creditquantity;
}
public String getDebitquantity() {
return debitquantity;
}
public void setDebitquantity(String debitquantity) {
this.debitquantity = debitquantity;
}
public String getPrice() {
return price;
}
public void setPrice(String price) {
this.price = price;
}
}