1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- ////////////////////
- // 由CodeGenerator创建。
- // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
- // author: gwang
- // 日期: 2021-12-21 14:42:37
- ////////////////////
- /**
- * Static Model pvp_shop 竞技 商店
- */
- class sm_pvp_shop
- {
- /**
- * @var Int32 用途未知!!请到数据库中添加字段注释。
- */
- public $id;
- /**
- * @var Int32 商品ID
- */
- public $typeId;
- /**
- * @var String 商品名称
- */
- public $name;
- /**
- * @var Int32 物品售价,
- */
- public $price;
- /**
- * @var Int32 定价类型: 0.RMB(元), 1.金币(个), 2.钻石(颗), 3. 体力 4. 友情点 5. 竞技币 default(5)
- */
- public $priceType;
- /**
- * @var Int32 玩家等级达到之后才能刷新出来
- */
- public $unlock_level;
- /**
- * @var Int32 被刷新到的基础概率(权重)
- */
- public $probability;
- /**
- * @var String 内容(itemId,num)
- */
- public $goods;
- /**
- * @var Int32 售罄:0 false, 1 true, 这个策划不用改, 程序用的 default(0)
- */
- public $sold;
- }
|