From 317bb4aefb93d4e3797b8a3fd1ac9e82665beb48 Mon Sep 17 00:00:00 2001 From: Administrator <15274802129@163.com> Date: Tue, 22 Jul 2025 14:57:47 +0800 Subject: [PATCH] feat(mall): 优化衣服社交 muse 数据处理逻辑 --- src/main/java/cc/mrbird/febs/mall/entity/ClothesSocialMuse.java | 19 +++++++++++++++++++ 1 files changed, 19 insertions(+), 0 deletions(-) diff --git a/src/main/java/cc/mrbird/febs/mall/entity/ClothesSocialMuse.java b/src/main/java/cc/mrbird/febs/mall/entity/ClothesSocialMuse.java index f36051d..7322154 100644 --- a/src/main/java/cc/mrbird/febs/mall/entity/ClothesSocialMuse.java +++ b/src/main/java/cc/mrbird/febs/mall/entity/ClothesSocialMuse.java @@ -1,8 +1,13 @@ package cc.mrbird.febs.mall.entity; import cc.mrbird.febs.common.entity.BaseEntity; +import cc.mrbird.febs.mall.vo.clothes.AdminClothesLocationRemarkVo; +import cc.mrbird.febs.mall.vo.clothes.AdminClothesPatternRemarkVo; +import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; + +import java.util.List; @Data @TableName("clothes_social_muse") @@ -24,6 +29,20 @@ private Long statureId; private Long sizeId; private Long patternId; + private String patternRemark; private Long locationId; private Long clothId; + + + + @TableField(exist = false) + private String patternText; + @TableField(exist = false) + private String patternImage; + @TableField(exist = false) + private List<AdminClothesPatternRemarkVo> patternData; + @TableField(exist = false) + private List<AdminClothesLocationRemarkVo> locationData; + + } -- Gitblit v1.9.1