增加贷方,借方数量,单价

This commit is contained in:
476474485@qq.com 2024-08-15 14:15:06 +08:00
parent 118aa26aee
commit cb716e6734
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;
}
}