<?php
/**
* Product class represents model of WireFrame entity
*
* $Project: Alliancemarkets2 $
* $Id$
*
* @package alliancemarkets2
* @author George Matyas <webexciter@yahoo.com>
* @version $Revision$
*/
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass="App\EntityRepo\WireFrameRepo")
* @ORM\Table(name="wire_frame")
*/
class WireFrame
{
/**
* @ORM\Column(type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $wireFrameId=0;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
protected $wireFrameName;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
protected $wireFrameFile;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
protected $wireFrameImage;
/**
* @ORM\Column(type="integer")
*/
protected $serviceId=3;
public function getWireFrameId(): ?int
{
return $this->wireFrameId;
}
public function getWireFrameName(): ?string
{
return $this->wireFrameName;
}
public function setWireFrameName(?string $wireFrameName): self
{
$this->wireFrameName = $wireFrameName;
return $this;
}
public function getWireFrameFile(): ?string
{
return $this->wireFrameFile;
}
public function setWireFrameFile(?string $wireFrameFile): self
{
$this->wireFrameFile = $wireFrameFile;
return $this;
}
public function getWireFrameImage(): ?string
{
return $this->wireFrameImage;
}
public function setWireFrameImage(?string $wireFrameImage): self
{
$this->wireFrameImage = $wireFrameImage;
return $this;
}
public function getServiceId(): ?int
{
return $this->serviceId;
}
public function setServiceId(int $serviceId): self
{
$this->serviceId = $serviceId;
return $this;
}
}