From 572f0d9f4dea84c32a1590cd7d6cbdd27fc07623 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期二, 12 三月 2024 15:08:06 +0800
Subject: [PATCH] 10144 【越南】【砍树】【主干】充值表的RecordID 支持超过255

---
 ServerPack/MapServerPack/HA1_Sys/CoinToGoldCountInfo.h       |    4 ++--
 ServerPack/MapServerPack/HAA_SaleActivity/ActGrowupBuyInfo.h |    2 +-
 ServerPack/MapServerPack/HA1_Sys/CoinToGoldReport.h          |    2 +-
 ClientPack/ClientToMapServer/CA1_Sys/QueryCoinToGoldCount.h  |    2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/ClientPack/ClientToMapServer/CA1_Sys/QueryCoinToGoldCount.h b/ClientPack/ClientToMapServer/CA1_Sys/QueryCoinToGoldCount.h
index 0138cb4..3a2e461 100644
--- a/ClientPack/ClientToMapServer/CA1_Sys/QueryCoinToGoldCount.h
+++ b/ClientPack/ClientToMapServer/CA1_Sys/QueryCoinToGoldCount.h
@@ -3,5 +3,5 @@
 struct tagCMQueryCoinToGoldCount
 {
 	tagHead		Head;
-	BYTE		RecordID;	//充值记录ID,也就是充值ID,发0则查全部
+	WORD		RecordID;	//充值记录ID,也就是充值ID,发0则查全部
 };
diff --git a/ServerPack/MapServerPack/HA1_Sys/CoinToGoldCountInfo.h b/ServerPack/MapServerPack/HA1_Sys/CoinToGoldCountInfo.h
index 5eaa69f..69c4b5b 100644
--- a/ServerPack/MapServerPack/HA1_Sys/CoinToGoldCountInfo.h
+++ b/ServerPack/MapServerPack/HA1_Sys/CoinToGoldCountInfo.h
@@ -2,7 +2,7 @@
 
 struct	tagMCCoinToGoldCount
 {
-	BYTE		RecordID;
+	WORD		RecordID;
 	WORD		TodayPayCount; // 今日已购买次数
 	DWORD		TotalPayCount; // 累计总购买次数
 	WORD		WeekPayCount; // 周总购买次数
@@ -12,6 +12,6 @@
 struct	tagMCCoinToGoldCountInfo
 {
 	tagHead		Head;
-	BYTE		RecordCount;
+	WORD		RecordCount;
 	tagMCCoinToGoldCount		CTGCountInfoList[RecordCount];
 };
diff --git a/ServerPack/MapServerPack/HA1_Sys/CoinToGoldReport.h b/ServerPack/MapServerPack/HA1_Sys/CoinToGoldReport.h
index adee14e..4f3606b 100644
--- a/ServerPack/MapServerPack/HA1_Sys/CoinToGoldReport.h
+++ b/ServerPack/MapServerPack/HA1_Sys/CoinToGoldReport.h
@@ -6,7 +6,7 @@
 	BYTE		OrderLen;
 	char		OrderID[OrderLen];	// 订单id
 	DWORD		Coin;			// 充值的点卷
-	BYTE		RecordID;	// ctgID
+	WORD		RecordID;	// ctgID
 	BYTE		OrderInfoLen;
 	char		OrderInfo[OrderInfoLen];
 };
diff --git a/ServerPack/MapServerPack/HAA_SaleActivity/ActGrowupBuyInfo.h b/ServerPack/MapServerPack/HAA_SaleActivity/ActGrowupBuyInfo.h
index 264d4b9..be643d8 100644
--- a/ServerPack/MapServerPack/HAA_SaleActivity/ActGrowupBuyInfo.h
+++ b/ServerPack/MapServerPack/HAA_SaleActivity/ActGrowupBuyInfo.h
@@ -9,7 +9,7 @@
 
 struct    tagMCActGrowupBuyCTGInfo
 {
-	BYTE		CTGID;	// 充值表ID
+	WORD		CTGID;	// 充值表ID
 	BYTE		GainItemCount;	// 获得物品数
 	tagMCActGrowupBuyCTGItem	GainItemList[GainItemCount];	// 获得物品列表,替换充值表中的 GainItemList 字段信息
 };

--
Gitblit v1.8.0