src/Entity/Core/IbookQuizConnection.php line 9

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace App\Entity\Core;
  3. use Doctrine\ORM\Mapping as ORM;
  4. #[ORM\Table('ibook_quiz_connection')]
  5. #[ORM\Entity(repositoryClass: IbookQuizConnectionRepository::class)]
  6. class IbookQuizConnection
  7. {
  8. /**
  9. * @var int
  10. */
  11. #[ORM\Column(name: 'id', type: 'integer', nullable: false)]
  12. #[ORM\Id]
  13. #[ORM\GeneratedValue(strategy: 'AUTO')]
  14. private int $id;
  15. /**
  16. * @var int
  17. */
  18. #[ORM\Column(name: 'crdate', type: 'integer', nullable: false)]
  19. private int $crdate;
  20. /**
  21. * @var int
  22. */
  23. #[ORM\Column(name: 'tstamp', type: 'integer', nullable: false)]
  24. private int $tstamp;
  25. /**
  26. * @var int
  27. */
  28. #[ORM\Column(name: 'deleted', type: 'integer', nullable: false, options: ['default' => 0])]
  29. private int $deleted;
  30. /**
  31. * @var int
  32. */
  33. #[ORM\Column(name: 'hidden', type: 'integer', nullable: false, options: ['default' => 0])]
  34. private int $hidden;
  35. /**
  36. * @var string
  37. */
  38. #[ORM\Column(name: 'quiz_id', type: 'string', length: 20, nullable: false)]
  39. private string $quizId;
  40. /**
  41. * @var string
  42. */
  43. #[ORM\Column(name: 'ibook_url', type: 'string', length: 255, nullable: false)]
  44. private string $ibookUrl;
  45. /**
  46. * @var string
  47. */
  48. #[ORM\Column(name: 'ibook_isbn', type: 'string', length: 20, nullable: false)]
  49. private string $ibookIsbn;
  50. /**
  51. * @var int
  52. */
  53. #[ORM\Column(name: 'ibook_pid', type: 'integer', nullable: false)]
  54. private int $ibookPid;
  55. /**
  56. * @var int
  57. */
  58. #[ORM\Column(name: 'ibook_publisher_id', type: 'integer', nullable: false)]
  59. private int $ibookPublisherId;
  60. public function getIbookPublisherId(): int
  61. {
  62. return $this->ibookPublisherId;
  63. }
  64. public function setIbookPublisherId(int $ibookPublisherId): void
  65. {
  66. $this->ibookPublisherId = $ibookPublisherId;
  67. }
  68. public function getId(): int
  69. {
  70. return $this->id;
  71. }
  72. public function setId(int $id): void
  73. {
  74. $this->id = $id;
  75. }
  76. public function getCrdate(): int
  77. {
  78. return $this->crdate;
  79. }
  80. public function setCrdate(int $crdate): void
  81. {
  82. $this->crdate = $crdate;
  83. }
  84. public function getTstamp(): int
  85. {
  86. return $this->tstamp;
  87. }
  88. public function setTstamp(int $tstamp): void
  89. {
  90. $this->tstamp = $tstamp;
  91. }
  92. public function getDeleted(): int
  93. {
  94. return $this->deleted;
  95. }
  96. public function setDeleted(int $deleted): void
  97. {
  98. $this->deleted = $deleted;
  99. }
  100. public function getHidden(): int
  101. {
  102. return $this->hidden;
  103. }
  104. public function setHidden(int $hidden): void
  105. {
  106. $this->hidden = $hidden;
  107. }
  108. public function getQuizId(): string
  109. {
  110. return $this->quizId;
  111. }
  112. public function setQuizId(string $quizId): void
  113. {
  114. $this->quizId = $quizId;
  115. }
  116. public function getIbookUrl(): string
  117. {
  118. return $this->ibookUrl;
  119. }
  120. public function setIbookUrl(string $ibookUrl): void
  121. {
  122. $this->ibookUrl = $ibookUrl;
  123. }
  124. public function getIbookIsbn(): string
  125. {
  126. return $this->ibookIsbn;
  127. }
  128. public function setIbookIsbn(string $ibookIsbn): void
  129. {
  130. $this->ibookIsbn = $ibookIsbn;
  131. }
  132. public function getIbookPid(): int
  133. {
  134. return $this->ibookPid;
  135. }
  136. public function setIbookPid(int $ibookPid): void
  137. {
  138. $this->ibookPid = $ibookPid;
  139. }
  140. }