给出入库明细接口增加税率和税额字段
This commit is contained in:
@@ -26,6 +26,12 @@ public class DepotHeadVo4InDetail {
|
||||
|
||||
private BigDecimal AllPrice;
|
||||
|
||||
private BigDecimal taxRate;
|
||||
|
||||
private BigDecimal taxMoney;
|
||||
|
||||
private BigDecimal taxLastMoney;
|
||||
|
||||
private String SName;
|
||||
|
||||
private String DName;
|
||||
@@ -116,6 +122,30 @@ public class DepotHeadVo4InDetail {
|
||||
AllPrice = allPrice;
|
||||
}
|
||||
|
||||
public BigDecimal getTaxRate() {
|
||||
return taxRate;
|
||||
}
|
||||
|
||||
public void setTaxRate(BigDecimal taxRate) {
|
||||
this.taxRate = taxRate;
|
||||
}
|
||||
|
||||
public BigDecimal getTaxMoney() {
|
||||
return taxMoney;
|
||||
}
|
||||
|
||||
public void setTaxMoney(BigDecimal taxMoney) {
|
||||
this.taxMoney = taxMoney;
|
||||
}
|
||||
|
||||
public BigDecimal getTaxLastMoney() {
|
||||
return taxLastMoney;
|
||||
}
|
||||
|
||||
public void setTaxLastMoney(BigDecimal taxLastMoney) {
|
||||
this.taxLastMoney = taxLastMoney;
|
||||
}
|
||||
|
||||
public String getSName() {
|
||||
return SName;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user