From f76b3b27279df0cbc4a8a212182382c9f694d1cb Mon Sep 17 00:00:00 2001
From: cloudroam <cloudroam>
Date: 星期四, 02 一月 2025 15:00:27 +0800
Subject: [PATCH] add:客服配置
---
src/main/java/com/mzl/flower/dto/response/current/CurrentUserDTO.java | 17 +++++++++++++++++
1 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/mzl/flower/dto/response/current/CurrentUserDTO.java b/src/main/java/com/mzl/flower/dto/response/current/CurrentUserDTO.java
index 8e67b4f..894d918 100644
--- a/src/main/java/com/mzl/flower/dto/response/current/CurrentUserDTO.java
+++ b/src/main/java/com/mzl/flower/dto/response/current/CurrentUserDTO.java
@@ -5,6 +5,7 @@
import com.mzl.flower.dto.response.partner.PartnerDTO;
import com.mzl.flower.dto.response.supplier.SupplierDTO;
import com.mzl.flower.dto.response.system.MenuTreeDTO;
+import com.mzl.flower.entity.supplier.SupplierSub;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@@ -50,4 +51,20 @@
@ApiModelProperty(value = "是否绑定微信")
private Boolean bindWechat;
+
+ @ApiModelProperty(value = "当前积分")
+ private Integer currentPoint;
+
+ @ApiModelProperty(value = "是否总仓权限")
+ private Boolean mainWarehouse;
+
+ @ApiModelProperty(value = "是否是子供应商")
+ public Boolean isSubSupplier;
+
+ @ApiModelProperty(value = "子供应商信息")
+ private SupplierSub supplierSub;
+
+ @ApiModelProperty(value = "是否是子供应商")
+ public Boolean switchFlag;
+
}
--
Gitblit v1.9.3