| 1234567891011121314151617181920212223242526 |
- <?php
- namespace common\models;
- /**
- * This is the model class for table "xhLuckyDrawActivity".
- *
- * @property int $id
- * @property int luckyDrawActivityId 抽奖活动ID
- * @property int uid 参与活动用户
- * @property int inviteCount 邀请好友数
- * @property int useDrawCount 已使用抽奖数
- * @property int participateTime 参与时间
- *
- */
- class xhLuckyDrawAwardParticipant extends xhBaseModel
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'xhLuckyDrawAwardParticipant';
- }
- }
|