From cea7fe70eacea9bca7c32d693f0f760b48cc1624 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8B=8F=E7=AB=B9=E7=BA=A2?= Date: Fri, 28 Nov 2025 09:11:44 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E8=B4=A6=E6=88=B7=E4=BD=99=E9=A2=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/cool/store/dto/wallet/AccountInfoDTO.java | 3 +++ .../src/main/java/com/cool/store/vo/wallet/AccountInfoVO.java | 3 +++ .../src/main/java/com/cool/store/vo/wallet/AccountPageVO.java | 4 ++++ 3 files changed, 10 insertions(+) diff --git a/coolstore-partner-model/src/main/java/com/cool/store/dto/wallet/AccountInfoDTO.java b/coolstore-partner-model/src/main/java/com/cool/store/dto/wallet/AccountInfoDTO.java index e953b4381..84069a95c 100644 --- a/coolstore-partner-model/src/main/java/com/cool/store/dto/wallet/AccountInfoDTO.java +++ b/coolstore-partner-model/src/main/java/com/cool/store/dto/wallet/AccountInfoDTO.java @@ -66,6 +66,9 @@ public class AccountInfoDTO { @ApiModelProperty(value = "账户余额", required = true) private String totalAmount; + @ApiModelProperty(value = "可提现余额", required = true) + private String withdrawAmount; + @ApiModelProperty(value = "打标状态 0 未打标 1 已打标", required = true) private Integer labelingStatus; diff --git a/coolstore-partner-model/src/main/java/com/cool/store/vo/wallet/AccountInfoVO.java b/coolstore-partner-model/src/main/java/com/cool/store/vo/wallet/AccountInfoVO.java index b7245a73a..96ef50043 100644 --- a/coolstore-partner-model/src/main/java/com/cool/store/vo/wallet/AccountInfoVO.java +++ b/coolstore-partner-model/src/main/java/com/cool/store/vo/wallet/AccountInfoVO.java @@ -37,6 +37,9 @@ public class AccountInfoVO { @ApiModelProperty(value = "账户余额") private String totalAmount; + @ApiModelProperty(value = "可提现余额", required = true) + private String withdrawAmount; + @ApiModelProperty(value = "打标状态 0 未打标 1 已打标") private Integer labelingStatus; diff --git a/coolstore-partner-model/src/main/java/com/cool/store/vo/wallet/AccountPageVO.java b/coolstore-partner-model/src/main/java/com/cool/store/vo/wallet/AccountPageVO.java index df54bbd6a..ffb478e9e 100644 --- a/coolstore-partner-model/src/main/java/com/cool/store/vo/wallet/AccountPageVO.java +++ b/coolstore-partner-model/src/main/java/com/cool/store/vo/wallet/AccountPageVO.java @@ -66,6 +66,10 @@ public class AccountPageVO { @ApiModelProperty(value = "账户余额", required = true) private String totalAmount; + @ApiModelProperty(value = "可提现余额", required = true) + private String withdrawAmount; + + @ApiModelProperty(value = "打标状态 0 未打标 1 已打标", required = true) private Integer labelingStatus;