From 36643a3a6c30bdb280568934a69607173a1f3e1a Mon Sep 17 00:00:00 2001 From: 陶杰 <1378534974@qq.com> Date: 星期日, 29 十二月 2024 14:56:13 +0800 Subject: [PATCH] 1.腾讯地图:定时任务每天凌晨5点 --- src/main/java/com/mzl/flower/dto/response/current/CurrentUserDTO.java | 14 ++++++++++++++ 1 files changed, 14 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 7d12c3b..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; @@ -53,4 +54,17 @@ @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