From 03dc0bda693feaeb2fa684b70db52feea8ea65a7 Mon Sep 17 00:00:00 2001 From: heheng <475597332@qq.com> Date: 星期二, 06 五月 2025 13:37:01 +0800 Subject: [PATCH] 增加专家导出字段 --- expert-system/src/main/java/com/gkhy/system/domain/ProjectExpert.java | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/expert-system/src/main/java/com/gkhy/system/domain/ProjectExpert.java b/expert-system/src/main/java/com/gkhy/system/domain/ProjectExpert.java index f986dd8..6fb0e71 100644 --- a/expert-system/src/main/java/com/gkhy/system/domain/ProjectExpert.java +++ b/expert-system/src/main/java/com/gkhy/system/domain/ProjectExpert.java @@ -121,6 +121,9 @@ @ApiModelProperty(value = "计费标准") private String freightBasis; + @ApiModelProperty(value = "计费标准说明") + private String billingInstructions; + /** 计费时长 */ @ApiModelProperty(value = "计费时长") private BigDecimal billingDuration; @@ -137,5 +140,16 @@ @ApiModelProperty(value = "卡号") private String bankCard; + @ApiModelProperty(value = "应纳税所得额") + private BigDecimal taxableIncome; + + @ApiModelProperty(value = "应缴个税") + private BigDecimal incomeTaxPayable; + + @ApiModelProperty(value = "专家费(税前)") + private BigDecimal taxExpertFee; + + + } \ No newline at end of file -- Gitblit v1.9.2