文件上传https

This commit is contained in:
chen-xin-zhi 2025-03-21 13:32:14 +08:00
parent cf9f526967
commit d28ed8165a
3 changed files with 15 additions and 4 deletions

View File

@ -19,10 +19,12 @@ import com.cultural.heritage.model.vo.clothes.ClothesVO;
import com.cultural.heritage.service.clothes.ClothesCategoryService;
import com.cultural.heritage.service.clothes.ClothesService;
import com.cultural.heritage.service.common.CommonService;
import com.cultural.heritage.utils.DecoderUtils;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import jakarta.annotation.Resource;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
@ -182,6 +184,10 @@ public class ClothesCategoryController {
fieldConditions.put("isShelves", 1);
List<Clothes> clothesList = commonService.findByFieldEqTargetFields(fieldConditions, clothesService);
// 处理富文本字段
for (Clothes clothes : clothesList) {
if (StringUtils.isNotBlank(clothes.getRichText())) clothes.setRichText(DecoderUtils.decodeText(clothes.getRichText()));
}
// 获取服装租赁产品VO列表
List<ClothesVO> clothesVOS = commonService.convertList(clothesList, ClothesVO.class);
Collections.reverse(clothesVOS);

View File

@ -20,10 +20,12 @@ import com.cultural.heritage.model.entity.Clothes;
import com.cultural.heritage.model.vo.clothes.ClothesVO;
import com.cultural.heritage.service.clothes.ClothesService;
import com.cultural.heritage.service.common.CommonService;
import com.cultural.heritage.utils.DecoderUtils;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import jakarta.annotation.Resource;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
@ -150,9 +152,12 @@ public class ClothesController {
long pageSize = clothesQueryRequest.getPageSize();
QueryWrapper<Clothes> clothesQueryWrapper = clothesService.getQueryWrapper(clothesQueryRequest);
Page<Clothes> page = clothesService.page(new Page<>(current, pageSize), clothesQueryWrapper);
List<Clothes> records = page.getRecords();
List<ClothesVO> clothesVOS = commonService.convertList(records, ClothesVO.class);
List<Clothes> clothesList = page.getRecords();
// 处理富文本字段
for (Clothes clothes : clothesList) {
if (StringUtils.isNotBlank(clothes.getRichText())) clothes.setRichText(DecoderUtils.decodeText(clothes.getRichText()));
}
List<ClothesVO> clothesVOS = commonService.convertList(clothesList, ClothesVO.class);
Page<ClothesVO> clothesPageVOPage = new Page<>();
clothesPageVOPage.setRecords(clothesVOS);
clothesPageVOPage.setTotal(page.getTotal());

View File

@ -97,7 +97,7 @@ public class ClothesServiceImpl extends ServiceImpl<ClothesMapper, Clothes> impl
Clothes clothes = this.getById(id);
ThrowUtils.throwIf(clothes == null, ErrorCode.OPERATION_ERROR, "服装不存在");
// 处理富文本字段
clothes.setRichText(DecoderUtils.decodeText(clothes.getRichText()));
if (StringUtils.isNotBlank(clothes.getRichText())) clothes.setRichText(DecoderUtils.decodeText(clothes.getRichText()));
// 转换为VO对象
return commonService.copyProperties(clothes, ClothesVO.class);
}