src/Entity/Cell.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Cell
  6.  *
  7.  * @ORM\Table(name="cell", indexes={@ORM\Index(name="FKcell709106", columns={"level_id"})})
  8.  * @ORM\Entity()
  9.  */
  10. class Cell
  11. {
  12.     /**
  13.      * @var int
  14.      *
  15.      * @ORM\Column(name="id", type="integer", nullable=false)
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="IDENTITY")
  18.      */
  19.     private $id;
  20.     /**
  21.      * @var string
  22.      *
  23.      * @ORM\Column(name="number", type="string", length=255, nullable=false)
  24.      */
  25.     private $number;
  26.     /**
  27.      * @var float
  28.      *
  29.      * @ORM\Column(name="length", type="float", precision=10, scale=0, nullable=false)
  30.      */
  31.     private $length;
  32.     /**
  33.      * @var float
  34.      *
  35.      * @ORM\Column(name="width", type="float", precision=10, scale=0, nullable=false)
  36.      */
  37.     private $width;
  38.     /**
  39.      * @var float
  40.      *
  41.      * @ORM\Column(name="height", type="float", precision=10, scale=0, nullable=false)
  42.      */
  43.     private $height;
  44.     /**
  45.      * @var bool
  46.      *
  47.      * @ORM\Column(name="status", type="boolean", nullable=false, options={"default"="1"})
  48.      */
  49.     private $status true;
  50.     /**
  51.      * @var \Level
  52.      *
  53.      * @ORM\ManyToOne(targetEntity="Level")
  54.      * @ORM\JoinColumns({
  55.      *   @ORM\JoinColumn(name="level_id", referencedColumnName="id")
  56.      * })
  57.      */
  58.     private $level;
  59.     public function getId(): ?int
  60.     {
  61.         return $this->id;
  62.     }
  63.     public function getNumber(): ?string
  64.     {
  65.         return $this->number;
  66.     }
  67.     public function setNumber(string $number): self
  68.     {
  69.         $this->number $number;
  70.         return $this;
  71.     }
  72.     public function getLength(): ?float
  73.     {
  74.         return $this->length;
  75.     }
  76.     public function setLength(float $length): self
  77.     {
  78.         $this->length $length;
  79.         return $this;
  80.     }
  81.     public function getWidth(): ?float
  82.     {
  83.         return $this->width;
  84.     }
  85.     public function setWidth(float $width): self
  86.     {
  87.         $this->width $width;
  88.         return $this;
  89.     }
  90.     public function getHeight(): ?float
  91.     {
  92.         return $this->height;
  93.     }
  94.     public function setHeight(float $height): self
  95.     {
  96.         $this->height $height;
  97.         return $this;
  98.     }
  99.     public function isStatus(): ?bool
  100.     {
  101.         return $this->status;
  102.     }
  103.     public function setStatus(bool $status): self
  104.     {
  105.         $this->status $status;
  106.         return $this;
  107.     }
  108.     public function getLevel(): ?Level
  109.     {
  110.         return $this->level;
  111.     }
  112.     public function setLevel(?Level $level): self
  113.     {
  114.         $this->level $level;
  115.         return $this;
  116.     }
  117.     public function __toString()
  118.     {
  119.         return $this->number;
  120.     }
  121. }