ChapterContent.php 595 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace App\Models\Book;
  3. use Illuminate\Database\Eloquent\Factories\HasFactory;
  4. use Illuminate\Database\Eloquent\Model;
  5. class ChapterContent extends Model
  6. {
  7. use HasFactory;
  8. protected $table = 'chapter_contents';
  9. /**
  10. * @var mixed
  11. */
  12. private $id;
  13. /**
  14. * @var mixed
  15. */
  16. private $bid;
  17. /**
  18. * @var mixed
  19. */
  20. private $zw_bid;
  21. /**
  22. * @var int|mixed
  23. */
  24. private $zw_chapter_id;
  25. /**
  26. * @var mixed|string
  27. */
  28. private $chapter_name;
  29. /**
  30. * @var array|mixed|string
  31. */
  32. private $content;
  33. }