sm_tokenGift.php 683 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. ////////////////////
  3. // 由CodeGenerator创建。
  4. // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  5. // author: gwang
  6. // 日期: 2021-12-21 14:42:46
  7. ////////////////////
  8. /**
  9. * Static Model tokenGift 兑换码礼包
  10. */
  11. class sm_tokenGift
  12. {
  13. /**
  14. * @var Int32 礼包id(最大255)
  15. */
  16. public $typeId;
  17. /**
  18. * @var Int32 平台(0:all,1:腾讯,2:九游,...)
  19. */
  20. public $plat;
  21. /**
  22. * @var Int32 开始生效时间戳
  23. */
  24. public $startTs;
  25. /**
  26. * @var Int32 失效时间戳
  27. */
  28. public $expirets;
  29. /**
  30. * @var String 礼包内容: itemid,num;itemid,num...
  31. */
  32. public $reward;
  33. }