123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- ////////////////////
- // 由CodeGenerator创建。
- // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
- // author: gwang
- // 日期: 2021-12-21 14:42:46
- ////////////////////
- /**
- * Static Model tokenGift 兑换码礼包
- */
- class sm_tokenGift
- {
- /**
- * @var Int32 礼包id(最大255)
- */
- public $typeId;
- /**
- * @var Int32 平台(0:all,1:腾讯,2:九游,...)
- */
- public $plat;
- /**
- * @var Int32 开始生效时间戳
- */
- public $startTs;
- /**
- * @var Int32 失效时间戳
- */
- public $expirets;
- /**
- * @var String 礼包内容: itemid,num;itemid,num...
- */
- public $reward;
- }
|