From c27b6f9c2741da45efb5de648ce1876e64f1ebc6 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期二, 26 三月 2019 16:01:15 +0800
Subject: [PATCH] 6250 【后端】【2.0】拍卖行开发单(增加竞价时间通知)

---
 ServerPack/GameServerPack/HB5_Bourse/AttentionAuctionItemInfo.h |    1 +
 ServerPack/GameServerPack/HB5_Bourse/PlayerAuctionItemInfo.h    |    1 +
 ServerPack/GameServerPack/HB5_Bourse/AuctionItemInfo.h          |    1 +
 ServerPack/GameServerPack/HB5_Bourse/RefreshAuctionItemInfo.h   |    1 +
 ServerPack/GameServerPack/HB5_Bourse/BiddingItemInfo.h          |    1 +
 ServerPack/GameServerPack/HB5_Bourse/FamilyAuctionItemInfo.h    |    1 +
 6 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/ServerPack/GameServerPack/HB5_Bourse/AttentionAuctionItemInfo.h b/ServerPack/GameServerPack/HB5_Bourse/AttentionAuctionItemInfo.h
index 95924d7..bb16d6f 100644
--- a/ServerPack/GameServerPack/HB5_Bourse/AttentionAuctionItemInfo.h
+++ b/ServerPack/GameServerPack/HB5_Bourse/AttentionAuctionItemInfo.h
@@ -8,6 +8,7 @@
 	WORD		ItemCount;
 	char		AddTime[19];	//上架时间 yyyy-MM-dd hh:mm:ss
 	WORD		BidderPrice;	//竞拍玩家出价
+	char		BiddingTime[19];	//竞价时间 yyyy-MM-dd hh:mm:ss
 	WORD		UserDataLen;
 	char		UserData[UserDataLen];		//自定义数据
 };
diff --git a/ServerPack/GameServerPack/HB5_Bourse/AuctionItemInfo.h b/ServerPack/GameServerPack/HB5_Bourse/AuctionItemInfo.h
index ac61910..51aeb51 100644
--- a/ServerPack/GameServerPack/HB5_Bourse/AuctionItemInfo.h
+++ b/ServerPack/GameServerPack/HB5_Bourse/AuctionItemInfo.h
@@ -8,6 +8,7 @@
 	WORD		ItemCount;
 	char		AddTime[19];	//上架时间 yyyy-MM-dd hh:mm:ss
 	WORD		BidderPrice;	//竞拍玩家出价
+	char		BiddingTime[19];	//竞价时间 yyyy-MM-dd hh:mm:ss
 	WORD		UserDataLen;
 	char		UserData[UserDataLen];		//自定义数据
 };
diff --git a/ServerPack/GameServerPack/HB5_Bourse/BiddingItemInfo.h b/ServerPack/GameServerPack/HB5_Bourse/BiddingItemInfo.h
index 276d802..5713cb3 100644
--- a/ServerPack/GameServerPack/HB5_Bourse/BiddingItemInfo.h
+++ b/ServerPack/GameServerPack/HB5_Bourse/BiddingItemInfo.h
@@ -9,6 +9,7 @@
 	char		AddTime[19];	//上架时间 yyyy-MM-dd hh:mm:ss
 	DWORD		BidderID;		//竞拍玩家ID,也就是当前最高竞价玩家ID
 	WORD		BidderPrice;	//竞拍玩家出价
+	char		BiddingTime[19];	//竞价时间 yyyy-MM-dd hh:mm:ss
 	WORD		UserDataLen;
 	char		UserData[UserDataLen];		//自定义数据
 };
diff --git a/ServerPack/GameServerPack/HB5_Bourse/FamilyAuctionItemInfo.h b/ServerPack/GameServerPack/HB5_Bourse/FamilyAuctionItemInfo.h
index cbc3df3..d5b6efc 100644
--- a/ServerPack/GameServerPack/HB5_Bourse/FamilyAuctionItemInfo.h
+++ b/ServerPack/GameServerPack/HB5_Bourse/FamilyAuctionItemInfo.h
@@ -8,6 +8,7 @@
 	WORD		ItemCount;
 	char		AddTime[19];	//上架时间 yyyy-MM-dd hh:mm:ss
 	WORD		BidderPrice;	//竞拍玩家出价
+	char		BiddingTime[19];	//竞价时间 yyyy-MM-dd hh:mm:ss
 	WORD		UserDataLen;
 	char		UserData[UserDataLen];		//自定义数据
 	WORD		FamilyPlayerIDLen;
diff --git a/ServerPack/GameServerPack/HB5_Bourse/PlayerAuctionItemInfo.h b/ServerPack/GameServerPack/HB5_Bourse/PlayerAuctionItemInfo.h
index 017c008..db97b91 100644
--- a/ServerPack/GameServerPack/HB5_Bourse/PlayerAuctionItemInfo.h
+++ b/ServerPack/GameServerPack/HB5_Bourse/PlayerAuctionItemInfo.h
@@ -8,6 +8,7 @@
 	WORD		ItemCount;
 	char		AddTime[19];	//上架时间 yyyy-MM-dd hh:mm:ss
 	WORD		BidderPrice;	//竞拍玩家出价
+	char		BiddingTime[19];	//竞价时间 yyyy-MM-dd hh:mm:ss
 	WORD		UserDataLen;
 	char		UserData[UserDataLen];		//自定义数据
 };
diff --git a/ServerPack/GameServerPack/HB5_Bourse/RefreshAuctionItemInfo.h b/ServerPack/GameServerPack/HB5_Bourse/RefreshAuctionItemInfo.h
index 8775fb5..d14d7dd 100644
--- a/ServerPack/GameServerPack/HB5_Bourse/RefreshAuctionItemInfo.h
+++ b/ServerPack/GameServerPack/HB5_Bourse/RefreshAuctionItemInfo.h
@@ -7,6 +7,7 @@
 	char		AddTime[19];	//上架时间
 	DWORD		BidderID;		//最高竞拍玩家ID,也就是当前最高竞价玩家ID	
 	DWORD		BidderPrice;	//最高竞拍价格
+	char		BiddingTime[19];	//竞价时间 yyyy-MM-dd hh:mm:ss
 };
 
 struct	tagGCRefreshAuctionItemInfo

--
Gitblit v1.8.0