更新了商品管理模块
This commit is contained in:
parent
63c52fcc68
commit
0dd9f106b0
|
@ -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)) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user