feat():修复接口相关逻辑

master
WeiRan 2024-08-09 21:29:58 +08:00
parent f17a2324ce
commit 13a4e0de62
1 changed files with 5 additions and 2 deletions

View File

@ -129,12 +129,12 @@ public class OrderPayCustomerServiceImpl extends ServiceImpl<OrderPayCustomerMap
} }
/** /**
* ID * ID
* @param orderCustomerId * @param orderCustomerId
* @param status * @param status
*/ */
@Override
public void settingStatus(Long orderCustomerId, String status) { public void settingStatus(Long orderCustomerId, String status) {
LambdaQueryWrapper<OrderPayCustomer> queryWrapper = new LambdaQueryWrapper<>(); LambdaQueryWrapper<OrderPayCustomer> queryWrapper = new LambdaQueryWrapper<>();
queryWrapper.eq(OrderPayCustomer::getId, orderCustomerId); queryWrapper.eq(OrderPayCustomer::getId, orderCustomerId);
@ -151,6 +151,9 @@ public class OrderPayCustomerServiceImpl extends ServiceImpl<OrderPayCustomerMap
this.update(updateWrapper); this.update(updateWrapper);
} }
@Override @Override
public boolean save(OrderPayCustomer orderPayCustomer){ public boolean save(OrderPayCustomer orderPayCustomer){