更新了商品管理模块
This commit is contained in:
parent
1e56633a2b
commit
68f73228fe
|
@ -96,7 +96,7 @@ public class GoodServiceImpl extends ServiceImpl<GoodMapper, Good> implements Go
|
|||
if (ObjectUtils.isEmpty(festivalOrder) || festivalOrder <= 0) {
|
||||
throw new BusinessException(ErrorCode.PARAMS_ERROR, "节日参数错误");
|
||||
}
|
||||
if (ObjectUtils.isEmpty(price) || price.compareTo(BigDecimal.ZERO) <= 0) {
|
||||
if (ObjectUtils.isEmpty(price) || price.compareTo(BigDecimal.ZERO) < 0) {
|
||||
throw new BusinessException(ErrorCode.PARAMS_ERROR, "商品价格不能小于等于0");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user