xhLuckyDrawAwardParticipant.php 551 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace common\models;
  3. /**
  4. * This is the model class for table "xhLuckyDrawActivity".
  5. *
  6. * @property int $id
  7. * @property int luckyDrawActivityId 抽奖活动ID
  8. * @property int uid 参与活动用户
  9. * @property int inviteCount 邀请好友数
  10. * @property int useDrawCount 已使用抽奖数
  11. * @property int participateTime 参与时间
  12. *
  13. */
  14. class xhLuckyDrawAwardParticipant extends xhBaseModel
  15. {
  16. /**
  17. * @inheritdoc
  18. */
  19. public static function tableName()
  20. {
  21. return 'xhLuckyDrawAwardParticipant';
  22. }
  23. }