@@ -298,7 +298,7 @@ public class StudentPaymentOrderDetailServiceImpl extends BaseServiceImpl<Long,
public List<Goods> findApplyOrderGoods(Long orderId) {
List<StudentPaymentOrderDetail> applyOrderGoods = studentPaymentOrderDetailDao.findApplyOrderGoods(orderId);
- if (applyOrderGoods == null || applyOrderGoods.size() == 0) {
+ if (CollectionUtils.isEmpty(applyOrderGoods)) {
return null;
}
String goodsIdsStr = "";