From 732045a41aeb619e01c51be93aa3dd75a75997b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A2=81=E7=90=A6=E6=B6=9B?= <18222067976@163.com> Date: Mon, 11 Oct 2021 13:39:54 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B7=A5=E4=BD=9C=E7=BB=84=E4=BF=AE=E6=94=B9#4?= =?UTF-8?q?0347?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/jero/project/vo/SetChargeInput.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jero-boot-incoming-payment/src/main/java/com/jero/project/vo/SetChargeInput.java b/jero-boot-incoming-payment/src/main/java/com/jero/project/vo/SetChargeInput.java index 76fac518..6f68338d 100644 --- a/jero-boot-incoming-payment/src/main/java/com/jero/project/vo/SetChargeInput.java +++ b/jero-boot-incoming-payment/src/main/java/com/jero/project/vo/SetChargeInput.java @@ -5,6 +5,7 @@ import lombok.Data; import javax.validation.constraints.*; import java.io.Serializable; +import java.math.BigDecimal; import java.util.List; @Data @@ -19,7 +20,7 @@ public class SetChargeInput implements Serializable { @ApiModelProperty(value = "应收金额(元)") @DecimalMax(value = "9999999999.99",message = "应收金额(元)格式错误") @NotNull(message = "应收金额(元)不能为空!") - private Integer receivableAmount; + private BigDecimal receivableAmount; /**收费通知号*/ @ApiModelProperty(value = "收费通知号") @NotEmpty(message = "收费通知号不能为空")