订单详情查询修复

This commit is contained in:
tianfeng 2025-10-20 17:47:48 +08:00
parent d2f36fc53f
commit 4b6f31dccf

View File

@ -196,7 +196,7 @@ public class InAppPurchaseDetailsServiceImpl implements InAppPurchaseDetailsServ
if (Objects.nonNull(query.getStatus())) {
criteria.and("status").is(query.getStatus());
}
if (Objects.nonNull(query.getCountryCode())) {
if (StringUtils.isNotEmpty(query.getCountryCode())) {
criteria.and("countryCode").is(query.getCountryCode());
}