From 545d3a5024f54976a6685a30c7c1a4107fd5d563 Mon Sep 17 00:00:00 2001
From: KKSU <15274802129@163.com>
Date: Thu, 19 Dec 2024 17:50:05 +0800
Subject: [PATCH] fix(mall): 修复会员兑换碳币权限及数据展示问题- 修改会员兑换碳币权限判断逻辑,使用 withdrawState 替代 changeState - 调整 ApiRunDataVo 中 score 和 realScore 字段含义,确保数据展示正确 - 更新 buyVipList.html 中状态颜色,以更直观地显示不同状态

---
 src/main/java/cc/mrbird/febs/mall/dto/ApiRechargeWalletDto.java |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/src/main/java/cc/mrbird/febs/mall/dto/ApiRechargeWalletDto.java b/src/main/java/cc/mrbird/febs/mall/dto/ApiRechargeWalletDto.java
index fc8ea85..1ce5998 100644
--- a/src/main/java/cc/mrbird/febs/mall/dto/ApiRechargeWalletDto.java
+++ b/src/main/java/cc/mrbird/febs/mall/dto/ApiRechargeWalletDto.java
@@ -10,9 +10,18 @@
 @ApiModel(value = "ApiRechargeWalletDto", description = "余额充值接收类")
 public class ApiRechargeWalletDto {
 
+    @ApiModelProperty(value = "1:普通充值 2:合伙人充值", example = "10")
+    private Integer type;
+
+    @ApiModelProperty(value = "代理申请ID", example = "10")
+    private Long agentApplyId;
+
     @ApiModelProperty(value = "充值金额", example = "10")
     private BigDecimal amount;
 
+    @ApiModelProperty(value = "充值单号", example = "10")
+    private String rechargeNo;
+
     @ApiModelProperty(hidden = true)
     private Long memberId;
 

--
Gitblit v1.9.1