| 1234567891011121314151617181920212223242526 |
- <?php
- namespace common\models;
- /**
- * This is the model class for table "xhInviteList".
- *
- * @property integer $id
- * @property integer $sjId
- * @property string $inviteCode
- * @property integer $invitedMerchantId
- * @property string $prize
- * @property integer $takeStatus
- * @property string $createTime
- */
- class xhInviteList extends xhBaseModel
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'xhInviteList';
- }
- }
|