1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| // AA 18 ÏÞʱÇÀ¹º»î¶¯Íæ¼ÒÔ¤Ô¼ÐÅÏ¢ #tagMCFlashSaleAppointmentInfo
|
| struct tagMCFlashSaleAppointmentState
| {
| DWORD GoodsMark; // ÉÌÆ·±êʶ
| BYTE State; // ÊÇ·ñÔ¤Ô¼
| };
|
| struct tagMCFlashSaleAppointmentInfo
| {
| tagHead Head;
| BYTE ActNum; //»î¶¯±àºÅ
| BYTE IsAll; // ÊÇ·ñÈ«²¿
| WORD GoodsCount; // ÉÌÆ·Êý
| tagMCFlashSaleAppointmentState GoodsList[GoodsCount]; // Ô¤Ô¼µÄÉÌÆ·
| };
|
|