一口价查询

This commit is contained in:
2025-09-21 00:15:08 +08:00
parent b7d3e20c46
commit 18cb459320
4 changed files with 62 additions and 6 deletions

View File

@@ -715,9 +715,11 @@ public class FaceServiceImpl implements FaceService {
contentPageVO.setLockType(1);
}
}
IsBuyRespVO buy = orderBiz.isBuy(userId, contentPageVO.getScenicId(), contentPageVO.getGoodsType(), contentPageVO.getContentId());
if (buy.isBuy()) {
boolean buy = orderBiz.checkUserBuyItem(userId, contentPageVO.getGoodsType(), contentPageVO.getContentId());
if (buy) {
contentPageVO.setIsBuy(1);
} else {
contentPageVO.setIsBuy(0);
}
}).collect(Collectors.toList());