配置测试环境支付成功回调
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user