xhLuckyDrawActivity.php 1017 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace common\models;
  3. /**
  4. * This is the model class for table "xhLuckyDrawActivity".
  5. *
  6. * @property int $id
  7. * @property string $activityName 活动名称
  8. * @property int $sjId 商户Id
  9. * @property int $startTime 活动开始时间
  10. * @property int $endTime 活动结束时间
  11. * @property int $drawCount 抽奖次数(机会)
  12. * @property int $needAttention 是否要求关注公众号:0、不要求(默认);1、必须是
  13. * @property int $needVip 是否要求会员:0、不要求(默认);1、必须是
  14. * @property int $participants 参与人数
  15. * @property int $inviteCount 获得一次抽奖机会需要邀请的好友数量
  16. * @property int $rewardCount 0或留空表示邀请好友没有奖励
  17. * @property string $introduce 活动介绍
  18. * @property string $awardIds 活动奖品ids,','分隔
  19. *
  20. */
  21. class xhLuckyDrawActivity extends xhBaseModel
  22. {
  23. /**
  24. * @inheritdoc
  25. */
  26. public static function tableName()
  27. {
  28. return 'xhLuckyDrawActivity';
  29. }
  30. }