<?phpnamespace App\Entity;use App\Repository\UserLibraryPoolRepository;use Doctrine\ORM\Mapping as ORM;/** * @ORM\Entity(repositoryClass=UserLibraryPoolRepository::class) */class UserLibraryPool{ /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") */ private $id; /** * @ORM\Column(type="integer") */ private $user_id; /** * @ORM\Column(type="integer") */ private $library_id; /** * @ORM\Column(type="string", length=255) */ private $name; /** * @ORM\Column(type="text") */ private $description; /** * @ORM\Column(type="integer") */ private $type; /** * @ORM\Column(type="integer") */ private $sortorder; /** * @ORM\Column(type="integer") */ private $deletable; /** * @ORM\Column(type="integer") */ private $mon; /** * @ORM\Column(type="integer") */ private $tue; /** * @ORM\Column(type="integer") */ private $wed; /** * @ORM\Column(type="integer") */ private $thu; /** * @ORM\Column(type="integer") */ private $fri; /** * @ORM\Column(type="integer") */ private $sat; /** * @ORM\Column(type="integer") */ private $sun; /** * @ORM\Column(type="datetime") */ private $created_date; public function getId(): ?int { return $this->id; } public function getUserId(): ?int { return $this->user_id; } public function setUserId(int $user_id): self { $this->user_id = $user_id; return $this; } public function getLibraryId(): ?int { return $this->library_id; } public function setLibraryId(int $library_id): self { $this->library_id = $library_id; return $this; } public function getName(): ?string { return $this->name; } public function setName(string $name): self { $this->name = $name; return $this; } public function getDescription(): ?string { return $this->description; } public function setDescription(string $description): self { $this->description = $description; return $this; } public function getType(): ?int { return $this->type; } public function setType(int $type): self { $this->type = $type; return $this; } public function getDeletable(): ?int { return $this->deletable; } public function setDeletable(int $deletable): self { $this->deletable = $deletable; return $this; } public function getMon(): ?int { return $this->mon; } public function setMon(int $mon): self { $this->mon = $mon; return $this; } public function getTue(): ?int { return $this->tue; } public function setTue(int $tue): self { $this->tue = $tue; return $this; } public function getWed(): ?int { return $this->wed; } public function setWed(int $wed): self { $this->wed = $wed; return $this; } public function getThu(): ?int { return $this->thu; } public function setThu(int $thu): self { $this->thu = $thu; return $this; } public function getFri(): ?int { return $this->fri; } public function setFri(int $fri): self { $this->fri = $fri; return $this; } public function getSat(): ?int { return $this->sat; } public function setSat(int $sat): self { $this->sat = $sat; return $this; } public function getSun(): ?int { return $this->sun; } public function setSun(int $sun): self { $this->sun = $sun; return $this; } public function getCreatedDate(): ?\DateTimeInterface { return $this->created_date; } public function setCreatedDate(\DateTimeInterface $created_date): self { $this->created_date = $created_date; return $this; } public function getSortorder(): ?int { return $this->sortorder; } public function setSortorder(int $sortorder): self { $this->sortorder = $sortorder; return $this; }}