fix:打标接口针对网商改动;字段名修改;网商开通回调;大额充值回调

This commit is contained in:
wangff
2025-11-19 14:41:40 +08:00
parent 3ddf965a6c
commit 088ee0a0e5
16 changed files with 88 additions and 36 deletions

View File

@@ -25,6 +25,17 @@ public class WalletPaymentOrderDAO {
walletPaymentOrderMapper.insertSelective(walletPaymentOrderDO);
}
/**
* 更新订单状态
*/
public void updateOrderByPaymentId(String storeId, String paymentId, Integer orderStatus) {
Example example = new Example(WalletPaymentOrderDO.class);
example.createCriteria()
.andEqualTo("storeId", storeId)
.andEqualTo("paymentId", paymentId);
walletPaymentOrderMapper.updateByExampleSelective(WalletPaymentOrderDO.builder().orderStatus(orderStatus).build(), example);
}
/**
* 查询未支付的充值订单
*/