| 123456789101112131415161718192021222324252627 |
- <?php
- namespace common\models;
- /**
- * This is the model class for table "xhLuckyDrawAwardCustomer".
- *
- * @property int $id
- * @property int $uid 中奖用户id
- * @property string $userName 用户昵称
- * @property int $awardId 中奖的奖品id
- * @property string $awardName 奖品名称
- * @property int $count 此奖品的数量
- * @property int $status 领取状态:-1、过期未领取;0、未领取(默认);1、已领取
- * @property int $luckyDrawActivityId 抽奖活动表ID
- *
- */
- class xhLuckyDrawAwardCustomer extends xhBaseModel
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'xhLuckyDrawAwardCustomer';
- }
- }
|