From a1245c1ed23e6f576d39e8828ad6b98d7cbc0df2 Mon Sep 17 00:00:00 2001
From: KKSU <15274802129@163.com>
Date: Thu, 23 Jan 2025 15:33:25 +0800
Subject: [PATCH] refactor(unisoftiot): 删除无用的 API 相关代码- 移除了 Account、Device、Product 等实体类 - 删除了对应的 Mapper 接口和服务类 - 移除了 API 请求相关的工具类和枚举类

---
 src/main/java/cc/mrbird/febs/mall/vo/MallMemberVo.java |   28 ++++++++++++++++++++++++++++
 1 files changed, 28 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 37c2cde..45e2800 100644
--- a/src/main/java/cc/mrbird/febs/mall/vo/MallMemberVo.java
+++ b/src/main/java/cc/mrbird/febs/mall/vo/MallMemberVo.java
@@ -1,9 +1,11 @@
 package cc.mrbird.febs.mall.vo;
 
+import cc.mrbird.febs.vip.entity.MallVipConfig;
 import com.fasterxml.jackson.annotation.JsonFormat;
 import io.swagger.annotations.ApiModel;
 import io.swagger.annotations.ApiModelProperty;
 import lombok.Data;
+import org.springframework.format.annotation.DateTimeFormat;
 
 import java.math.BigDecimal;
 import java.util.Date;
@@ -78,4 +80,30 @@
     @ApiModelProperty(value = "是否是代理 1: 申请中 2:是 3:否")
     private Integer isAgent;
 
+    @ApiModelProperty(value = "代理名称")
+    private String agentLevelName;
+
+    @ApiModelProperty(value = "代理等级数字  1:一级 2:二级 3:三级")
+    private Integer agentLevel;
+
+    @ApiModelProperty(value = "收藏数量")
+    private Integer collectionCnt;
+
+    @ApiModelProperty(value = "足迹数量")
+    private Integer footprintCnt;
+
+    @ApiModelProperty(value = "足迹数量")
+    private Integer childCnt;
+
+    @ApiModelProperty(value = "是否是推销员")
+    private Integer isSale;
+
+    @ApiModelProperty(value = "会员信息")
+    private MallVipConfig vipInfo;
+
+
+    @ApiModelProperty(value = "生日")
+    @DateTimeFormat(pattern = "yyyy-MM-dd")
+    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
+    private Date birthday;
 }

--
Gitblit v1.9.1