123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?php
- ////////////////////
- // 由CodeGenerator创建。
- // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
- // author: gwang
- // 日期: 2024-03-20 15:21:18
- ////////////////////
- /**
- * Static Model shop_gold 金币商店
- */
- class sm_shop_gold
- {
- /**
- * @var Int32 用途未知!!请到数据库中添加字段注释。
- */
- public $id;
- /**
- * @var Int32 用途未知!!请到数据库中添加字段注释。
- */
- public $typeId;
- /**
- * @var String 用途未知!!请到数据库中添加字段注释。
- */
- public $name;
- /**
- * @var String 用途未知!!请到数据库中添加字段注释。
- */
- public $desc;
- /**
- * @var Int32 用途未知!!请到数据库中添加字段注释。
- */
- public $price;
- /**
- * @var String 用途未知!!请到数据库中添加字段注释。
- */
- public $reward;
- /**
- * @var String 用途未知!!请到数据库中添加字段注释。
- */
- public $icon;
- /**
- * @var Int32 免费次数 default(0)
- */
- public $freeNum;
- /**
- * @var Int32 折扣 default(0)
- */
- public $discount;
- /**
- * @var Int32 广告次数 default(0)
- */
- public $guanggaoNum;
- /**
- * @var Int32 冷却时间 default(0)
- */
- public $downTs;
- }
|