From cceef623138876516154e191fba660ce588bbd38 Mon Sep 17 00:00:00 2001 From: lijiarao Date: Mon, 14 Nov 2022 17:16:01 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E6=89=93=E5=8C=85=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E5=AF=BC=E5=87=BA=E8=A1=A8=E5=A4=B4=E4=BD=8D=E7=BD=AE=E8=B0=83?= =?UTF-8?q?=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/jero/pack/entity/PayPackCompany.java | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/jero-boot-incoming-payment/src/main/java/com/jero/pack/entity/PayPackCompany.java b/jero-boot-incoming-payment/src/main/java/com/jero/pack/entity/PayPackCompany.java index 4074a2b7..ac08e1fe 100644 --- a/jero-boot-incoming-payment/src/main/java/com/jero/pack/entity/PayPackCompany.java +++ b/jero-boot-incoming-payment/src/main/java/com/jero/pack/entity/PayPackCompany.java @@ -91,6 +91,12 @@ public class PayPackCompany implements Serializable { // @Excel(name = "备注", width = 15) @ApiModelProperty(value = "备注") private java.lang.String remark; + + @Excel(name = "确认收入金额", width = 15) + @TableField(exist = false) + @ApiModelProperty(value = "确认收入金额") + private BigDecimal confirmAmount; + /**实际到账费用*/ @Excel(name = "实际到账费用", width = 15) @ApiModelProperty(value = "实际到账费用") @@ -140,8 +146,5 @@ public class PayPackCompany implements Serializable { @ApiModelProperty(value = "邮箱") private String email; - @Excel(name = "确认收入金额", width = 15) - @TableField(exist = false) - @ApiModelProperty(value = "确认收入金额") - private BigDecimal confirmAmount; + }