From 00c597948cf3e3360b42a747b9bccf60bee4763a Mon Sep 17 00:00:00 2001 From: wzy <wzy19931122ai@163.com> Date: Thu, 19 May 2022 22:31:21 +0800 Subject: [PATCH] fix goods add and goodsUPdate --- src/main/java/cc/mrbird/febs/mall/vo/MallMemberVo.java | 22 +++++++++++++++++++++- 1 files changed, 21 insertions(+), 1 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 a51685b..b78cb76 100644 --- a/src/main/java/cc/mrbird/febs/mall/vo/MallMemberVo.java +++ b/src/main/java/cc/mrbird/febs/mall/vo/MallMemberVo.java @@ -5,6 +5,7 @@ import io.swagger.annotations.ApiModelProperty; import lombok.Data; +import java.math.BigDecimal; import java.util.Date; @Data @@ -33,11 +34,12 @@ private String avatar; @ApiModelProperty(value = "余额") - private String balance; + private BigDecimal balance; @ApiModelProperty(value = "代理等级") private String levelName; + @ApiModelProperty(value = "推荐人昵称") private String referrerName; private String level; @@ -52,4 +54,22 @@ public static final int ACCOUNTSTATUS_Y = 1; public static final int ACCOUNTSTATUS_N = 2; + @ApiModelProperty(value = "是否设置收款方式", example = "1是2否") + private Integer hasPayment = 2; + + @ApiModelProperty(value = "是否设置交易密码", example = "1是2否") + private Integer hasTradePwd = 2; + + @ApiModelProperty(value = "绑定手机号") + private String bindPhone; + + @ApiModelProperty(value = "累计消费") + private BigDecimal totalCost; + + @ApiModelProperty(value = "赠送积分") + private BigDecimal score; + + @ApiModelProperty(value = "抽奖积分") + private BigDecimal prizeScore; + } -- Gitblit v1.9.1