src/Entity/AddressBookCategory.php line 9

Open in your IDE?
  1. <?php
  2. namespace Acme\SudcmsBundle\Entity;
  3. use Acme\SudcmsBundle\Repository\AddressBookCategoryRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassAddressBookCategoryRepository::class)]
  6. class AddressBookCategory
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column(type'integer')]
  11.     private $id;
  12.     #[ORM\Column(type'integer')]
  13.     private $abcParentCategoryId;
  14.     #[ORM\Column(type'string'length255)]
  15.     private $abcEntitled;
  16.     #[ORM\Column(type'string'length255nullabletrue)]
  17.     private $abcHeadband;
  18.     #[ORM\Column(type'integer')]
  19.     private $abcSiteUid;
  20.     #[ORM\Column(type'string'length50)]
  21.     private $abcSiteLang;
  22.     #[ORM\Column(type'integer'nullabletrue)]
  23.     private $abcOrder;
  24.     public function getId(): ?int
  25.     {
  26.         return $this->id;
  27.     }
  28.     public function getAbcParentCategoryId(): ?int
  29.     {
  30.         return $this->abcParentCategoryId;
  31.     }
  32.     public function setAbcParentCategoryId(int $abcParentCategoryId): self
  33.     {
  34.         $this->abcParentCategoryId $abcParentCategoryId;
  35.         return $this;
  36.     }
  37.     public function getAbcEntitled(): ?string
  38.     {
  39.         return $this->abcEntitled;
  40.     }
  41.     public function setAbcEntitled(string $abcEntitled): self
  42.     {
  43.         $this->abcEntitled $abcEntitled;
  44.         return $this;
  45.     }
  46.     public function getAbcHeadband(): ?string
  47.     {
  48.         return $this->abcHeadband;
  49.     }
  50.     public function setAbcHeadband(?string $abcHeadband): self
  51.     {
  52.         $this->abcHeadband $abcHeadband;
  53.         return $this;
  54.     }
  55.     public function getAbcSiteUid(): ?int
  56.     {
  57.         return $this->abcSiteUid;
  58.     }
  59.     public function setAbcSiteUid(int $abcSiteUid): self
  60.     {
  61.         $this->abcSiteUid $abcSiteUid;
  62.         return $this;
  63.     }
  64.     public function getAbcSiteLang(): ?string
  65.     {
  66.         return $this->abcSiteLang;
  67.     }
  68.     public function setAbcSiteLang(string $abcSiteLang): self
  69.     {
  70.         $this->abcSiteLang $abcSiteLang;
  71.         return $this;
  72.     }
  73.     public function getAbcOrder(): ?int
  74.     {
  75.         return $this->abcOrder;
  76.     }
  77.     public function setAbcOrder(?int $abcOrder): self
  78.     {
  79.         $this->abcOrder $abcOrder;
  80.         return $this;
  81.     }
  82. }