CommentModel.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. namespace App\Models\Gteam;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * App\Models\Gteam\CommentModel
  6. *
  7. * @property int $id
  8. * @property \Illuminate\Support\Carbon $created_at 创建时间
  9. * @property \Illuminate\Support\Carbon $updated_at 更新时间
  10. * @property int $room_id 房间
  11. * @property int|null $uid 评论用户
  12. * @property int|null $comment_uid 被评论用户
  13. * @property int $speed 组队速度
  14. * @property int $level 游戏水平
  15. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gteam\CommentModel newModelQuery()
  16. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gteam\CommentModel newQuery()
  17. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gteam\CommentModel query()
  18. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gteam\CommentModel whereCommentUid($value)
  19. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gteam\CommentModel whereCreatedAt($value)
  20. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gteam\CommentModel whereId($value)
  21. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gteam\CommentModel whereLevel($value)
  22. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gteam\CommentModel whereRoomId($value)
  23. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gteam\CommentModel whereSpeed($value)
  24. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gteam\CommentModel whereUid($value)
  25. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gteam\CommentModel whereUpdatedAt($value)
  26. * @mixin \Eloquent
  27. */
  28. class CommentModel extends Model
  29. {
  30. //
  31. protected $table = 'kdgx_gteam_room_comment';
  32. protected $dateFormat = 'U';
  33. protected $fillable = ['room_id', 'uid', 'comment_uid', 'speed', 'level'];
  34. }