src/Entity/WireFrame.php line 21

Open in your IDE?
  1. <?php
  2. /**
  3.  * Product class represents model of WireFrame entity
  4.  *
  5.  * $Project: Alliancemarkets2 $
  6.  * $Id$
  7.  *
  8.  * @package alliancemarkets2
  9.  * @author George Matyas <webexciter@yahoo.com>
  10.  * @version $Revision$
  11.  */
  12. namespace App\Entity;
  13. use Doctrine\ORM\Mapping as ORM;
  14. /**
  15.  * @ORM\Entity(repositoryClass="App\EntityRepo\WireFrameRepo")
  16.  * @ORM\Table(name="wire_frame")
  17.  */
  18. class WireFrame
  19. {
  20.     /**
  21.      * @ORM\Column(type="integer")
  22.      * @ORM\Id
  23.      * @ORM\GeneratedValue(strategy="AUTO")
  24.      */ 
  25.     protected $wireFrameId=0;
  26.     /**
  27.      * @ORM\Column(type="string", length=255, nullable=true)
  28.      */
  29.     protected $wireFrameName;
  30.     
  31.     /**
  32.      * @ORM\Column(type="string", length=255, nullable=true)
  33.      */
  34.     protected $wireFrameFile;    
  35.     /**
  36.      * @ORM\Column(type="string", length=255, nullable=true)
  37.      */
  38.     protected $wireFrameImage;    
  39.     
  40.     /**
  41.      * @ORM\Column(type="integer")
  42.      */
  43.     protected $serviceId=3;
  44.     public function getWireFrameId(): ?int
  45.     {
  46.         return $this->wireFrameId;
  47.     }
  48.     public function getWireFrameName(): ?string
  49.     {
  50.         return $this->wireFrameName;
  51.     }
  52.     public function setWireFrameName(?string $wireFrameName): self
  53.     {
  54.         $this->wireFrameName $wireFrameName;
  55.         return $this;
  56.     }
  57.     public function getWireFrameFile(): ?string
  58.     {
  59.         return $this->wireFrameFile;
  60.     }
  61.     public function setWireFrameFile(?string $wireFrameFile): self
  62.     {
  63.         $this->wireFrameFile $wireFrameFile;
  64.         return $this;
  65.     }
  66.     public function getWireFrameImage(): ?string
  67.     {
  68.         return $this->wireFrameImage;
  69.     }
  70.     public function setWireFrameImage(?string $wireFrameImage): self
  71.     {
  72.         $this->wireFrameImage $wireFrameImage;
  73.         return $this;
  74.     }
  75.     public function getServiceId(): ?int
  76.     {
  77.         return $this->serviceId;
  78.     }
  79.     public function setServiceId(int $serviceId): self
  80.     {
  81.         $this->serviceId $serviceId;
  82.         return $this;
  83.     }
  84. }