更新了商品类别

This commit is contained in:
chen-xin-zhi 2024-12-21 09:36:58 +08:00
parent c969bf0ef5
commit 4795c9c454

View File

@ -235,6 +235,7 @@ public class CategoryController {
}
QueryWrapper<Good> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("type", typeName);
queryWrapper.eq("isShelves", 1);
queryWrapper.orderByDesc("id");
List<Good> goodList = goodService.list(queryWrapper);
Map<Long, List<Good>> map = new HashMap<>();