应收账单添加 税额 无税费用;

This commit is contained in:
王奎兴
2026-03-06 20:59:18 +08:00
parent c91aedb344
commit 1f8085709b
5 changed files with 28 additions and 7 deletions
@@ -255,4 +255,9 @@ public class Reconciliation extends BaseVOEntity{
@ApiModelProperty(value = "财务审核意见")
private String financeReviewOpinion;
}
@ApiModelProperty(value = "无税费用")
private BigDecimal taxFreeFee;
@ApiModelProperty(value = "税额")
private BigDecimal taxAmount;
}
@@ -263,4 +263,8 @@ public class ReconciliationPO extends BaseVOEntity{
@ApiModelProperty(value = "财务审核意见")
private String financeReviewOpinion;
}
@ApiModelProperty(value = "无税费用")
private BigDecimal taxFreeFee;
@ApiModelProperty(value = "税额")
private BigDecimal taxAmount;
}
@@ -292,4 +292,9 @@ public class ReconciliationDO extends BaseVOEntity{
@ApiModelProperty(value = "账单科目明细")
public List<ReconciliationAccountDTO> reconciliationAccountDTOList;
}
@ApiModelProperty(value = "无税费用")
private BigDecimal taxFreeFee;
@ApiModelProperty(value = "税额")
private BigDecimal taxAmount;
}