12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- ////////////////////
- // 由CodeGenerator创建。
- // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
- // author: gwang
- // 日期: 2024-06-20 17:00:35
- ////////////////////
- /**
- * Static Model token_publicgift 公共兑换码
- */
- class sm_token_publicgift
- {
- /**
- * @var Int32 用途未知!!请到数据库中添加字段注释。
- */
- public $id;
- /**
- * @var String 兑换码
- */
- public $tokenCode;
- /**
- * @var Int32 用途未知!!请到数据库中添加字段注释。 default(0)
- */
- public $plat;
- /**
- * @var String 奖品。第一个是道具ID,逗号分割,逗号后是数量。不同物品之间使用;(分号)分割
- */
- public $reward;
- /**
- * @var Int32 用途未知!!请到数据库中添加字段注释。 default(0)
- */
- public $startTs;
- /**
- * @var Int32 用途未知!!请到数据库中添加字段注释。 default(0)
- */
- public $expirets;
- /**
- * @var String 用途未知!!请到数据库中添加字段注释。
- */
- public $desc;
- }
|