配置测试环境支付成功回调

This commit is contained in:
谭凯凯
2024-10-10 16:46:34 +08:00
committed by Tankaikai
parent c9da828246
commit ba710c854e
4 changed files with 87 additions and 18 deletions

View File

@@ -1,8 +1,9 @@
package com.chaozhanggui.system.cashierservice.dao;
import com.chaozhanggui.system.cashierservice.entity.TbOrderPayment;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Component;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface TbOrderPaymentMapper {
int deleteByPrimaryKey(Integer id);
@@ -18,4 +19,6 @@ public interface TbOrderPaymentMapper {
int updateByPrimaryKey(TbOrderPayment record);
TbOrderPayment selectByOrderId(String orderId);
List<TbOrderPayment> selectListByOrderId(@Param("orderId") String orderId);
}