Administrator
2025-07-22 329430738e29429497ea2735a235ce831f08aafd
feat(mall): 服装尺寸列表按顺序号升序排列

- 在获取服装尺寸列表时,添加了按顺序号(orderNum)升序排列的条件
-这样可以确保尺寸列表按照正确的顺序展示,提高用户体验
1 files modified
1 ■■■■ changed files
src/main/java/cc/mrbird/febs/mall/service/impl/ApiClothesServiceImpl.java 1 ●●●● patch | view | raw | blame | history
src/main/java/cc/mrbird/febs/mall/service/impl/ApiClothesServiceImpl.java
@@ -131,6 +131,7 @@
            List<ClothesSize> clothesSizes = clothesSizeMapper.selectList(
                    Wrappers.lambdaQuery(ClothesSize.class)
                            .in(ClothesSize::getId, collect)
                    .orderByAsc(ClothesSize::getOrderNum)
            );