1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// B5 08 ÅÄÂôÐÐË¢ÐÂÅÄÆ· #tagGCRefreshAuctionItemInfo
 
struct    tagGCRefreshAuctionItem
{
    char        ItemGUID[40];
    BYTE        AuctionType;    //ÅÄÆ·ÀàÐÍ£¬0-È«·þÅÄÆ·£¬1-ÏÉÃËÅÄÆ·
    char        AddTime[19];    //ÉϼÜʱ¼ä
    DWORD        BidderID;        //×î¸ß¾ºÅÄÍæ¼ÒID£¬Ò²¾ÍÊǵ±Ç°×î¸ß¾º¼ÛÍæ¼ÒID    
    DWORD        BidderPrice;    //×î¸ß¾ºÅļ۸ñ
    char        BiddingTime[19];    //¾º¼Ûʱ¼ä yyyy-MM-dd hh:mm:ss
};
 
struct    tagGCRefreshAuctionItemInfo
{
    tagHead        Head;
    BYTE    RefreshCount;
    tagGCRefreshAuctionItem    RefreshAuctionItemList[RefreshCount];
};