From e17dc6ecf00516037d94332ef2d71ef6c3ec9727 Mon Sep 17 00:00:00 2001 From: KKSU <15274802129@163.com> Date: Tue, 10 Sep 2024 11:54:46 +0800 Subject: [PATCH] 增加会员升级日志打印 --- src/main/java/cc/mrbird/febs/mall/vo/MallMemberVo.java | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/src/main/java/cc/mrbird/febs/mall/vo/MallMemberVo.java b/src/main/java/cc/mrbird/febs/mall/vo/MallMemberVo.java index 16430ae..aa87340 100644 --- a/src/main/java/cc/mrbird/febs/mall/vo/MallMemberVo.java +++ b/src/main/java/cc/mrbird/febs/mall/vo/MallMemberVo.java @@ -116,5 +116,19 @@ @ApiModelProperty(value = "收益总额") private BigDecimal totalPerk; + @ApiModelProperty(value = "卡牌互转手续费") + private String insideNFTPercent; + @ApiModelProperty(value = "充值地址") + private String chargeAddress; + @ApiModelProperty(value = "最小提现金额") + private BigDecimal withdrawAmount; + @ApiModelProperty(value = "USDT价格") + private BigDecimal usdtPrice; + @ApiModelProperty(value = "卡牌互转标识 1-允许 0-拒绝") + private Integer aroundType; + @ApiModelProperty(value = "FDH互转标识 1-允许 0-拒绝") + private Integer aroundCoinType; + @ApiModelProperty(value = "FDH兑换标识 1-允许 0-拒绝") + private Integer changeType; } -- Gitblit v1.9.1