<?php declare(strict_types=1);
namespace App\Entity\Core;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Table('ibook_quiz_connection')]
#[ORM\Entity(repositoryClass: IbookQuizConnectionRepository::class)]
class IbookQuizConnection
{
/**
* @var int
*/
#[ORM\Column(name: 'id', type: 'integer', nullable: false)]
#[ORM\Id]
#[ORM\GeneratedValue(strategy: 'AUTO')]
private int $id;
/**
* @var int
*/
#[ORM\Column(name: 'crdate', type: 'integer', nullable: false)]
private int $crdate;
/**
* @var int
*/
#[ORM\Column(name: 'tstamp', type: 'integer', nullable: false)]
private int $tstamp;
/**
* @var int
*/
#[ORM\Column(name: 'deleted', type: 'integer', nullable: false, options: ['default' => 0])]
private int $deleted;
/**
* @var int
*/
#[ORM\Column(name: 'hidden', type: 'integer', nullable: false, options: ['default' => 0])]
private int $hidden;
/**
* @var string
*/
#[ORM\Column(name: 'quiz_id', type: 'string', length: 20, nullable: false)]
private string $quizId;
/**
* @var string
*/
#[ORM\Column(name: 'ibook_url', type: 'string', length: 255, nullable: false)]
private string $ibookUrl;
/**
* @var string
*/
#[ORM\Column(name: 'ibook_isbn', type: 'string', length: 20, nullable: false)]
private string $ibookIsbn;
/**
* @var int
*/
#[ORM\Column(name: 'ibook_pid', type: 'integer', nullable: false)]
private int $ibookPid;
/**
* @var int
*/
#[ORM\Column(name: 'ibook_publisher_id', type: 'integer', nullable: false)]
private int $ibookPublisherId;
public function getIbookPublisherId(): int
{
return $this->ibookPublisherId;
}
public function setIbookPublisherId(int $ibookPublisherId): void
{
$this->ibookPublisherId = $ibookPublisherId;
}
public function getId(): int
{
return $this->id;
}
public function setId(int $id): void
{
$this->id = $id;
}
public function getCrdate(): int
{
return $this->crdate;
}
public function setCrdate(int $crdate): void
{
$this->crdate = $crdate;
}
public function getTstamp(): int
{
return $this->tstamp;
}
public function setTstamp(int $tstamp): void
{
$this->tstamp = $tstamp;
}
public function getDeleted(): int
{
return $this->deleted;
}
public function setDeleted(int $deleted): void
{
$this->deleted = $deleted;
}
public function getHidden(): int
{
return $this->hidden;
}
public function setHidden(int $hidden): void
{
$this->hidden = $hidden;
}
public function getQuizId(): string
{
return $this->quizId;
}
public function setQuizId(string $quizId): void
{
$this->quizId = $quizId;
}
public function getIbookUrl(): string
{
return $this->ibookUrl;
}
public function setIbookUrl(string $ibookUrl): void
{
$this->ibookUrl = $ibookUrl;
}
public function getIbookIsbn(): string
{
return $this->ibookIsbn;
}
public function setIbookIsbn(string $ibookIsbn): void
{
$this->ibookIsbn = $ibookIsbn;
}
public function getIbookPid(): int
{
return $this->ibookPid;
}
public function setIbookPid(int $ibookPid): void
{
$this->ibookPid = $ibookPid;
}
}