文件上传https

This commit is contained in:
chen-xin-zhi 2025-03-21 14:08:29 +08:00
parent d28ed8165a
commit 3bcdc44828

View File

@ -76,7 +76,7 @@ public class ClothesServiceImpl extends ServiceImpl<ClothesMapper, Clothes> impl
queryWrapper.eq(id != null, "id", id); queryWrapper.eq(id != null, "id", id);
queryWrapper.like(StringUtils.isNotBlank(name), "name", name); queryWrapper.like(StringUtils.isNotBlank(name), "name", name);
queryWrapper.eq(categoryId != null, "categoryId", categoryId); queryWrapper.eq(categoryId != null, "categoryId", categoryId);
queryWrapper.eq("isShelves", isShelves); queryWrapper.eq(isShelves != null, "isShelves", isShelves);
// 根据排序字段和排序顺序进行排序 // 根据排序字段和排序顺序进行排序
queryWrapper.orderBy(SqlUtils.validSortField(sortField), queryWrapper.orderBy(SqlUtils.validSortField(sortField),