| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace common\models;
- /**
- * This is the model class for table "xhLuckyDrawActivity".
- *
- * @property int $id
- * @property string $activityName 活动名称
- * @property int $sjId 商户Id
- * @property int $startTime 活动开始时间
- * @property int $endTime 活动结束时间
- * @property int $drawCount 抽奖次数(机会)
- * @property int $needAttention 是否要求关注公众号:0、不要求(默认);1、必须是
- * @property int $needVip 是否要求会员:0、不要求(默认);1、必须是
- * @property int $participants 参与人数
- * @property int $inviteCount 获得一次抽奖机会需要邀请的好友数量
- * @property int $rewardCount 0或留空表示邀请好友没有奖励
- * @property string $introduce 活动介绍
- * @property string $awardIds 活动奖品ids,','分隔
- *
- */
- class xhLuckyDrawActivity extends xhBaseModel
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'xhLuckyDrawActivity';
- }
- }
|