123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- ////////////////////
- // 由CodeGenerator创建。
- // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
- // author: gwang
- // 日期: 2023-08-08 14:24:32
- ////////////////////
- /**
- * Static Model shop_daily 每日商店
- */
- class sm_shop_daily
- {
- /**
- * @var Int32 用途未知!!请到数据库中添加字段注释。
- */
- public $id;
- /**
- * @var Int32 物品id
- */
- public $typeId;
- /**
- * @var Int32 物品的类型,1钻石;2图纸;3装备;4配件宝箱
- */
- public $type;
- /**
- * @var Int32 花费钱的类型 1:免费;2金币;3钻石;
- */
- public $costType;
- /**
- * @var Int32 花费钱的数量
- */
- public $costNum;
- /**
- * @var Int32 折扣
- */
- public $discount;
- /**
- * @var Int32 广告的次数 default(0)
- */
- public $num;
- /**
- * @var String 奖励内容
- */
- public $reward;
- }
|