xhLuckyDrawAward.php 581 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace common\models;
  3. /**
  4. * This is the model class for table "xhLuckyDrawAward".
  5. *
  6. * @property int $id
  7. * @property string $awardName 奖品名称
  8. * @property int $order 每个活动中的排序
  9. * @property int $count 奖品发放数量
  10. * @property int $drawCount 已中奖的数量
  11. * @property float $probability 中奖概率
  12. * @property string $luckyDrawActivityId 抽奖活动表ID
  13. *
  14. */
  15. class xhLuckyDrawAward extends xhBaseModel
  16. {
  17. /**
  18. * @inheritdoc
  19. */
  20. public static function tableName()
  21. {
  22. return 'xhLuckyDrawAward';
  23. }
  24. }