From 113f3a5d3b843fba68ce50a3ba3255c66ca1e15f Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Tue, 17 Jan 2023 20:13:57 +0800
Subject: [PATCH] 20221227 充值归集
---
src/main/java/cc/mrbird/febs/mall/vo/MallMemberVo.java | 45 ++++++++++++++++++++++++++++++++++++++++++++-
1 files changed, 44 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 b7b5764..293b224 100644
--- a/src/main/java/cc/mrbird/febs/mall/vo/MallMemberVo.java
+++ b/src/main/java/cc/mrbird/febs/mall/vo/MallMemberVo.java
@@ -36,11 +36,15 @@
@ApiModelProperty(value = "余额")
private BigDecimal balance;
- @ApiModelProperty(value = "代理等级")
private String levelName;
+ @ApiModelProperty(value = "会员星级")
+ private String accountLevel;
+
+ @ApiModelProperty(value = "推荐人昵称")
private String referrerName;
+ @ApiModelProperty(value = "代理等级")
private String level;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
@@ -53,4 +57,43 @@
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;
+
+ /**
+ * 董事
+ */
+ @ApiModelProperty(value = "是否为董事 1-是 2-否")
+ private Integer director;
+
+ /**
+ * 店长
+ */
+ @ApiModelProperty(value = "是否店长 1-是 2-否")
+ private Integer storeMaster;
+
+ @ApiModelProperty(value = "剩余保证金")
+ private BigDecimal avaAmount;
+
+ @ApiModelProperty(value = "会员星级编码")
+ private Integer accountLevelCode;
+
+ @ApiModelProperty(value = "冻结金额")
+ private BigDecimal froBalance;
+
}
--
Gitblit v1.9.1