From d0e41f0680c720c86e0e7a212e3a511511146bd2 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期一, 25 二月 2019 10:05:55 +0800
Subject: [PATCH] 6250 【后端】【2.0】拍卖行开发单(封包)

---
 ServerPack/GameServerPack/HB5_Bourse/BiddingItemInfo     |    0 
 ServerPack/GameServerPack/HB5_Bourse/BiddingItemInfo.des |    1 +
 ServerPack/GameServerPack/HB5_Bourse/BiddingItemInfo.h   |   21 +++++++++++++++++++++
 3 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/ServerPack/GameServerPack/HB5_Bourse/BiddingItemInfo b/ServerPack/GameServerPack/HB5_Bourse/BiddingItemInfo
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/ServerPack/GameServerPack/HB5_Bourse/BiddingItemInfo
diff --git a/ServerPack/GameServerPack/HB5_Bourse/BiddingItemInfo.des b/ServerPack/GameServerPack/HB5_Bourse/BiddingItemInfo.des
new file mode 100644
index 0000000..ac30e40
--- /dev/null
+++ b/ServerPack/GameServerPack/HB5_Bourse/BiddingItemInfo.des
@@ -0,0 +1 @@
+B5 10 拍卖行玩家竞价中的物品信息 #tagGCBiddingItemInfo
diff --git a/ServerPack/GameServerPack/HB5_Bourse/BiddingItemInfo.h b/ServerPack/GameServerPack/HB5_Bourse/BiddingItemInfo.h
new file mode 100644
index 0000000..5d69da4
--- /dev/null
+++ b/ServerPack/GameServerPack/HB5_Bourse/BiddingItemInfo.h
@@ -0,0 +1,21 @@
+// B5 10 拍卖行玩家竞价中的物品信息 #tagGCBiddingItemInfo
+
+struct	tagGCBiddingItem
+{
+	char		ItemGUID[40];
+	DWORD		FamilyID;		//有值时为仙盟拍品
+	DWORD		ItemID;
+	WORD		ItemCount;
+	char		AddTime[19];	//上架时间 yyyy-MM-dd hh:mm:ss
+	WORD		BidderPrice;	//竞拍玩家出价
+	WORD		UserDataLen;
+	char		UserData[UserDataLen];		//自定义数据
+	BYTE		CanGetMoney;	//可否获得收益
+};
+
+struct	tagGCBiddingItemInfo
+{
+	tagHead		Head;
+	BYTE		AuctionItemCount;		//拍品数量
+	tagGCBiddingItem	AuctionItemList[AuctionItemCount];	//拍品列表
+};

--
Gitblit v1.8.0