|
@@ -91,7 +91,7 @@ public class UserPrizeRecoveryController extends BaseApiController {
|
|
|
// 兑换价格
|
|
|
Integer exchangePrice = 0;
|
|
|
|
|
|
- if (Objects.isNull(userPrizeStorage.getSkuId())) {
|
|
|
+ if (!Objects.isNull(userPrizeStorage.getSkuId())) {
|
|
|
GoodsSku goodsSku = goodsSkuService.getById(userPrizeStorage.getSkuId());
|
|
|
if (Objects.isNull(goodsSku)) {
|
|
|
return AjaxResult.error("sku信息有误");
|