From 44aa87717297bb4fca4bb83ba631646a87749174 Mon Sep 17 00:00:00 2001 From: Administrator <15274802129@163.com> Date: Wed, 09 Jul 2025 11:37:58 +0800 Subject: [PATCH] feat(mall): 新增社区功能相关接口和数据结构 --- src/main/java/cc/mrbird/febs/mall/service/impl/ClothesTypeServiceImpl.java | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/src/main/java/cc/mrbird/febs/mall/service/impl/ClothesTypeServiceImpl.java b/src/main/java/cc/mrbird/febs/mall/service/impl/ClothesTypeServiceImpl.java index 6d6c591..f84f1a6 100644 --- a/src/main/java/cc/mrbird/febs/mall/service/impl/ClothesTypeServiceImpl.java +++ b/src/main/java/cc/mrbird/febs/mall/service/impl/ClothesTypeServiceImpl.java @@ -24,6 +24,7 @@ import cn.hutool.core.date.DateUtil; import cn.hutool.core.util.ObjectUtil; import cn.hutool.core.util.StrUtil; +import cn.hutool.json.JSONObject; import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.core.toolkit.Wrappers; @@ -1049,6 +1050,12 @@ entity.setSizeId(dto.getSizeId()); entity.setPatternId(dto.getPatternId()); entity.setArtId(dto.getArtId()); + + JSONObject jsonObject = new JSONObject(); + jsonObject.putByPath("text", dto.getPatternText()); + jsonObject.putByPath("file", dto.getPatternImage()); + entity.setPatternRemark(jsonObject.toString()); + clothesSocialMuseMapper.updateById(entity); } -- Gitblit v1.9.1