## Opt - 订单类型

This commit is contained in:
sangelxiu1 2025-07-23 14:45:29 +08:00
parent 40e81e5b4e
commit 4e8f28da0f
1 changed files with 3 additions and 1 deletions

View File

@ -56,8 +56,10 @@ public class TOnlinePaymentServiceImpl extends ServiceImpl<TOnlinePaymentMapper,
for (TOnlinePaymentExt tOnlinePaymentExt : result) {
if(ObjectUtil.isNotEmpty(tOnlinePaymentExt.getOrderType())){
tOnlinePaymentExt.setOrderTypeVal(EOrderType.getLabelByValue(tOnlinePaymentExt.getOrderType()));
}else{
}else if(ObjectUtil.isNotEmpty(tOnlinePaymentExt.getRechargeId())){
tOnlinePaymentExt.setOrderTypeVal("充值订单");
}else{
tOnlinePaymentExt.setOrderTypeVal("");
}
}
return result;