update 支付记录新增卖家实收手续费 和费率等字段

This commit is contained in:
yyb
2026-01-29 10:44:26 +08:00
parent 0f22398f37
commit 91b39daba3
3 changed files with 18 additions and 12 deletions

View File

@@ -141,23 +141,25 @@ public class LeasePayRecordMessage implements Serializable {
*/
private boolean del;
/**
* 卖家手续费比例
*/
private BigDecimal feeRate;
/**
* 卖家实收金额 = 店铺手续费比例 * 买家实际支付金额
*/
private BigDecimal receivedAmount;
@TableField(exist = false)
private String sellerEmail;
@TableField(exist = false)
private Long sellerId;
/**
* 卖家实收金额 = 店铺手续费比例 * 买家实际支付金额
*/
@TableField(exist = false)
private BigDecimal receivedAmount;
/**
* 卖家手续费比例
*/
@TableField(exist = false)
private BigDecimal feeRate;
}