增加充值

This commit is contained in:
18796357645 2025-06-08 10:55:07 +08:00
parent 316e286d3f
commit ee04ef366a

View File

@ -35,7 +35,6 @@ public class OrderServiceImpl extends CrudServiceImpl<OrderDao, OrderEntity, Ord
String orderStatus = (String)params.get("orderStatus"); String orderStatus = (String)params.get("orderStatus");
String paymentStatus = (String)params.get("paymentStatus"); String paymentStatus = (String)params.get("paymentStatus");
String userId = (String)params.get("userId"); String userId = (String)params.get("userId");
QueryWrapper<OrderEntity> wrapper = new QueryWrapper<>(); QueryWrapper<OrderEntity> wrapper = new QueryWrapper<>();
wrapper.eq(StrUtil.isNotBlank(id), "id", id); wrapper.eq(StrUtil.isNotBlank(id), "id", id);
wrapper.eq(StrUtil.isNotBlank(orderStatus), "order_status", orderStatus); wrapper.eq(StrUtil.isNotBlank(orderStatus), "order_status", orderStatus);