From d1a44c0794d73b63a3d28f38aa210ebad8007be0 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期一, 10 十一月 2025 20:30:06 +0800
Subject: [PATCH] 247 【付费内容】特权卡-服务端

---
 ServerPack/HA3_Function/InvestInfo.h |   13 ++++++-------
 1 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/ServerPack/HA3_Function/InvestInfo.h b/ServerPack/HA3_Function/InvestInfo.h
index 83965dc..635d634 100644
--- a/ServerPack/HA3_Function/InvestInfo.h
+++ b/ServerPack/HA3_Function/InvestInfo.h
@@ -1,11 +1,10 @@
-// A3 38 投资理财信息 #tagMCInvestInfo
+// A3 38 投资信息 #tagSCInvestInfo
 
-struct	tagMCInvestInfo
+struct	tagSCInvestInfo
 {
 	tagHead		Head;
-	BYTE		InvestType; // 投资类型
-	WORD		CurDay; // 当前天数,投资第一天为1
-	BYTE		ValueCount;
-	DWORD		RewardValue[ValueCount];	//领奖记录值,按投资回报索引位记录是否已领取
-	DWORD		ProgressValue[ValueCount];	//投资相关可领取进度记录值:  9登录投资-记录已登录天数;11Boss投资-按回报索引位记录是否已击杀该boss
+	BYTE		InvestType;	// 投资类型
+	DWORD		InvestBuyTime;	// 投资购买时间戳,永久的通过该时间判断是否有效或已过天数,任意类型均有该值,过期没有重置,前端自己判断
+	DWORD		InvestEndTime;	// 投资到期时间戳,非永久的通过该时间判断到期时间,有天数限制的才有值
+	BYTE		AwardState;	// 今日是否已领取奖励
 };

--
Gitblit v1.8.0