feat():修复接口相关逻辑
parent
f17a2324ce
commit
13a4e0de62
|
@ -129,13 +129,13 @@ public class OrderPayCustomerServiceImpl extends ServiceImpl<OrderPayCustomerMap
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 通过看客户ID设置客户状态
|
* 通过看客户ID设置客户状态
|
||||||
* @param orderCustomerId
|
* @param orderCustomerId
|
||||||
* @param status
|
* @param status
|
||||||
*/
|
*/
|
||||||
public void settingStatus(Long orderCustomerId,String status){
|
@Override
|
||||||
|
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);
|
||||||
boolean isExists = this.exists(queryWrapper);
|
boolean isExists = this.exists(queryWrapper);
|
||||||
|
@ -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){
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue