src/Entity/LepDiiaCokInfo.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use ApiPlatform\Metadata\ApiResource;
  4. use App\Repository\LepDiiaCokInfoRepository;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassLepDiiaCokInfoRepository::class)]
  7. #[ApiResource]
  8. class LepDiiaCokInfo
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column]
  15.     private ?int $number null;
  16.     #[ORM\Column(length100)]
  17.     private ?string $name null;
  18.     #[ORM\Column(length100)]
  19.     private ?string $city null;
  20.     #[ORM\Column(length100)]
  21.     private ?string $chief null;
  22.     #[ORM\Column(length100)]
  23.     private ?string $phone null;
  24.     #[ORM\Column(length100)]
  25.     private ?string $mail null;
  26.     #[ORM\Column(length255)]
  27.     private ?string $adress null;
  28.     #[ORM\Column(length30)]
  29.     private ?string $ip null;
  30.     #[ORM\Column(length100)]
  31.     private ?string $district null;
  32.     #[ORM\Column(length10)]
  33.     private ?string $post_index null;
  34.     #[ORM\Column(length50)]
  35.     private ?string $street null;
  36.     #[ORM\Column(length10)]
  37.     private ?string $house null;
  38.     #[ORM\Column(length255nullabletrue)]
  39.     private ?string $diia_branch_id null;
  40.     #[ORM\Column(length255)]
  41.     private ?string $schedule null;
  42.     #[ORM\Column(length2)]
  43.     private ?string $active null;
  44.     #[ORM\Column]
  45.     private ?int $orders null;
  46.     #[ORM\Column(length10)]
  47.     private ?string $type_work null;
  48.     #[ORM\Column(length30)]
  49.     private ?string $diia_work null;
  50.     public function getId(): ?int
  51.     {
  52.         return $this->id;
  53.     }
  54.     public function getNumber(): ?int
  55.     {
  56.         return $this->number;
  57.     }
  58.     public function setNumber(int $number): self
  59.     {
  60.         $this->number $number;
  61.         return $this;
  62.     }
  63.     public function getName(): ?string
  64.     {
  65.         return $this->name;
  66.     }
  67.     public function setName(string $name): self
  68.     {
  69.         $this->name $name;
  70.         return $this;
  71.     }
  72.     public function getCity(): ?string
  73.     {
  74.         return $this->city;
  75.     }
  76.     public function setCity(string $city): self
  77.     {
  78.         $this->city $city;
  79.         return $this;
  80.     }
  81.     public function getChief(): ?string
  82.     {
  83.         return $this->chief;
  84.     }
  85.     public function setChief(string $chief): self
  86.     {
  87.         $this->chief $chief;
  88.         return $this;
  89.     }
  90.     public function getPhone(): ?string
  91.     {
  92.         return $this->phone;
  93.     }
  94.     public function setPhone(string $phone): self
  95.     {
  96.         $this->phone $phone;
  97.         return $this;
  98.     }
  99.     public function getMail(): ?string
  100.     {
  101.         return $this->mail;
  102.     }
  103.     public function setMail(string $mail): self
  104.     {
  105.         $this->mail $mail;
  106.         return $this;
  107.     }
  108.     public function getAdress(): ?string
  109.     {
  110.         return $this->adress;
  111.     }
  112.     public function setAdress(string $adress): self
  113.     {
  114.         $this->adress $adress;
  115.         return $this;
  116.     }
  117.     public function getIp(): ?string
  118.     {
  119.         return $this->ip;
  120.     }
  121.     public function setIp(string $ip): self
  122.     {
  123.         $this->ip $ip;
  124.         return $this;
  125.     }
  126.     public function getDistrict(): ?string
  127.     {
  128.         return $this->district;
  129.     }
  130.     public function setDistrict(string $district): self
  131.     {
  132.         $this->district $district;
  133.         return $this;
  134.     }
  135.     public function getPostIndex(): ?string
  136.     {
  137.         return $this->post_index;
  138.     }
  139.     public function setPostIndex(string $post_index): self
  140.     {
  141.         $this->post_index $post_index;
  142.         return $this;
  143.     }
  144.     public function getStreet(): ?string
  145.     {
  146.         return $this->street;
  147.     }
  148.     public function setStreet(string $street): self
  149.     {
  150.         $this->street $street;
  151.         return $this;
  152.     }
  153.     public function getHouse(): ?string
  154.     {
  155.         return $this->house;
  156.     }
  157.     public function setHouse(string $house): self
  158.     {
  159.         $this->house $house;
  160.         return $this;
  161.     }
  162.     public function getDiiaBranchId(): ?string
  163.     {
  164.         return $this->diia_branch_id;
  165.     }
  166.     public function setDiiaBranchId(?string $diia_branch_id): self
  167.     {
  168.         $this->diia_branch_id $diia_branch_id;
  169.         return $this;
  170.     }
  171.     public function getSchedule(): ?string
  172.     {
  173.         return $this->schedule;
  174.     }
  175.     public function setSchedule(string $schedule): self
  176.     {
  177.         $this->schedule $schedule;
  178.         return $this;
  179.     }
  180.     public function getActive(): ?string
  181.     {
  182.         return $this->active;
  183.     }
  184.     public function setActive(string $active): self
  185.     {
  186.         $this->active $active;
  187.         return $this;
  188.     }
  189.     public function getOrders(): ?int
  190.     {
  191.         return $this->orders;
  192.     }
  193.     public function setOrders(int $orders): self
  194.     {
  195.         $this->orders $orders;
  196.         return $this;
  197.     }
  198.     public function getTypeWork(): ?string
  199.     {
  200.         return $this->type_work;
  201.     }
  202.     public function setTypeWork(string $type_work): self
  203.     {
  204.         $this->type_work $type_work;
  205.         return $this;
  206.     }
  207.     public function getDiiaWork(): ?string
  208.     {
  209.         return $this->diia_work;
  210.     }
  211.     public function setDiiaWork(string $diia_work): self
  212.     {
  213.         $this->diia_work $diia_work;
  214.         return $this;
  215.     }
  216. }