VoiceInviteModel.php 1.4 KB

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. namespace App\Models\Gnight;
  3. use App\Models\Model;
  4. /**
  5. * App\Models\Gnight\VoiceInviteModel
  6. *
  7. * @property int $id 主键,用户
  8. * @property \Illuminate\Support\Carbon $created_at 创建时间
  9. * @property \Illuminate\Support\Carbon|null $updated_at 更新时间
  10. * @property int $uid 发起用户
  11. * @property int $invite_uid 助力用户
  12. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gnight\VoiceInviteModel newModelQuery()
  13. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gnight\VoiceInviteModel newQuery()
  14. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gnight\VoiceInviteModel query()
  15. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gnight\VoiceInviteModel whereCreatedAt($value)
  16. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gnight\VoiceInviteModel whereId($value)
  17. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gnight\VoiceInviteModel whereInviteUid($value)
  18. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gnight\VoiceInviteModel whereUid($value)
  19. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gnight\VoiceInviteModel whereUpdatedAt($value)
  20. * @mixin \Eloquent
  21. */
  22. class VoiceInviteModel extends Model
  23. {
  24. protected $table = 'kdgx_gnight_voice_invite';
  25. protected $dateFormat = 'U';
  26. protected $fillable = ['id', 'created_at', 'updated_at', 'uid', 'invite_uid'];
  27. }