1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- ////////////////////
- // 由CodeGenerator创建。
- // Copyright (C) gwang (mail@wanggangzero.cn), Loyalsoft@sjz Inc
- // author: gwang
- // 日期: 2018-01-19 17:07:55
- ////////////////////
- /**
- * Static Model boxJingYanCards
- */
- class sm_boxJingYanCards
- {
- /**
- * @var Int32 经验卡的道具ID
- */
- public $cardId;
- /**
- * @var Int32 开出经验卡数量上限 default(100)
- */
- public $cardsMax;
- /**
- * @var Int32 开出经验卡数量下限 default(10)
- */
- public $cardsMin;
- /**
- * @var Int32 掉落概率(权重)
- */
- public $probability;
- }
|