积分模块相关代码

This commit is contained in:
谭凯凯
2024-11-01 18:10:29 +08:00
committed by Tankaikai
parent 4c14f6a908
commit 1dc7a2a5de
2 changed files with 7 additions and 0 deletions

View File

@@ -143,4 +143,10 @@ public class TbPointsExchangeRecord {
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY) @JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
@TableField(exist = false) @TableField(exist = false)
private String openId; private String openId;
/**
* 拉起支付所需信息
*/
@TableField(exist = false)
private String payInfo;
} }

View File

@@ -318,6 +318,7 @@ public class TbPointsExchangeRecordServiceImpl extends ServiceImpl<TbPointsExcha
} }
entity.setPayOrderId(payResp.getPayOrderId()); entity.setPayOrderId(payResp.getPayOrderId());
super.updateById(entity); super.updateById(entity);
entity.setPayInfo(payResp.getPayInfo());
return entity; return entity;
} }