xhLuckyDrawAwardCustomer.php 690 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace common\models;
  3. /**
  4. * This is the model class for table "xhLuckyDrawAwardCustomer".
  5. *
  6. * @property int $id
  7. * @property int $uid 中奖用户id
  8. * @property string $userName 用户昵称
  9. * @property int $awardId 中奖的奖品id
  10. * @property string $awardName 奖品名称
  11. * @property int $count 此奖品的数量
  12. * @property int $status 领取状态:-1、过期未领取;0、未领取(默认);1、已领取
  13. * @property int $luckyDrawActivityId 抽奖活动表ID
  14. *
  15. */
  16. class xhLuckyDrawAwardCustomer extends xhBaseModel
  17. {
  18. /**
  19. * @inheritdoc
  20. */
  21. public static function tableName()
  22. {
  23. return 'xhLuckyDrawAwardCustomer';
  24. }
  25. }