更新了商品管理模块

This commit is contained in:
chen-xin-zhi 2024-12-02 08:33:08 +08:00
parent 63c52fcc68
commit 0dd9f106b0

View File

@ -49,7 +49,7 @@ public class ClothesGradeServiceImpl extends ServiceImpl<ClothesGradeMapper, Clo
if (ObjectUtils.isEmpty(maxPrice) || maxPrice.compareTo(BigDecimal.ZERO) <= 0) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "最高价格参数错误");
}
if (minPrice.compareTo(maxPrice) <= 0) {
if (minPrice.compareTo(maxPrice) >= 0) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "最低价格不能高于最高价格");
}
if (StringUtils.isAnyBlank(clothesType, image, brief)) {