xhInviteList.php 474 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace common\models;
  3. /**
  4. * This is the model class for table "xhInviteList".
  5. *
  6. * @property integer $id
  7. * @property integer $sjId
  8. * @property string $inviteCode
  9. * @property integer $invitedMerchantId
  10. * @property string $prize
  11. * @property integer $takeStatus
  12. * @property string $createTime
  13. */
  14. class xhInviteList extends xhBaseModel
  15. {
  16. /**
  17. * @inheritdoc
  18. */
  19. public static function tableName()
  20. {
  21. return 'xhInviteList';
  22. }
  23. }