支付记录加paymentId

This commit is contained in:
2024-01-19 14:47:35 +08:00
parent 64671cd421
commit 7edeb2f77c
3 changed files with 39 additions and 10 deletions

View File

@@ -35,6 +35,11 @@ public class OrderPayRecord {
*/
private BigDecimal payAmount;
/**
* 支付id
*/
private String paymentId;
/**
* 收单机构0-本账户余额1-微信支付2-汇付支付)
*/

View File

@@ -38,9 +38,5 @@ public interface OrderPayRecordMapper {
int insertOrUpdateSelective(OrderPayRecord record);
// int deleteByPrimaryKey(Integer id);
// int updateByPrimaryKey(OrderPayRecord record);
List<OrderPayRecord> getOrderPayRecordList(@Param("orderCode") String orderCode);
}