| 1234567891011121314151617181920212223242526 |
- <?php
- namespace common\models;
- /**
- * This is the model class for table "xhLuckyDrawAward".
- *
- * @property int $id
- * @property string $awardName 奖品名称
- * @property int $order 每个活动中的排序
- * @property int $count 奖品发放数量
- * @property int $drawCount 已中奖的数量
- * @property float $probability 中奖概率
- * @property string $luckyDrawActivityId 抽奖活动表ID
- *
- */
- class xhLuckyDrawAward extends xhBaseModel
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'xhLuckyDrawAward';
- }
- }
|