src/Entity/CompanyVisaApplicationDocument.php line 25

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Entity\Common\SoftDeletableEntityTrait;
  4. use App\Entity\Common\StatefulEntityTrait;
  5. use App\Entity\Common\TimestampedEntityTrait;
  6. use Doctrine\ORM\Mapping\UniqueConstraint;
  7. use DateTime;
  8. use Doctrine\ORM\Mapping as ORM;
  9. use Gedmo\Mapping\Annotation as Gedmo;
  10. use Evence\Bundle\SoftDeleteableExtensionBundle\Mapping\Annotation as Evence;
  11. /**
  12.  * Class CompanyVisaApplicationDocument
  13.  *
  14.  * @ORM\Entity(repositoryClass="App\Repository\CompanyVisaApplicationDocumentRepository")
  15.  * @ORM\Table(indexes={
  16.  *     @ORM\Index(name="IDX_updated_at", columns={"updated_at"}),
  17.  *     @ORM\Index(name="IDX_deleted_at", columns={"deleted_at"}),
  18.  *     @ORM\Index(name="IDX_is_active", columns={"is_active"})
  19.  * }
  20.  * )
  21.  * @Gedmo\SoftDeleteable(fieldName="deletedAt")
  22.  */
  23. class CompanyVisaApplicationDocument
  24. {
  25.     use SoftDeletableEntityTraitStatefulEntityTraitTimestampedEntityTrait;
  26.     /**
  27.      * @var integer
  28.      *
  29.      * @ORM\Id()
  30.      * @ORM\GeneratedValue
  31.      * @ORM\Column(type="integer")
  32.      */
  33.     private $id;
  34.     /**
  35.      * @ORM\ManyToOne(targetEntity="CompanyVisaApplication")
  36.      * @ORM\JoinColumn(name="visa_application_id", referencedColumnName="id", onDelete="CASCADE")
  37.      */
  38.     private $visaApplication;
  39.     /**
  40.      * @ORM\ManyToOne(targetEntity="StaFileType")
  41.      * @ORM\JoinColumn(name="file_type", referencedColumnName="code", onDelete="CASCADE")
  42.      */
  43.     private $fileType;
  44.     /**
  45.      * @var string
  46.      *
  47.      * @ORM\Column(length=100)
  48.      */
  49.     private $fileName;
  50.     /**
  51.      * @var string
  52.      *
  53.      * @ORM\Column(length=10)
  54.      */
  55.     private $extension;
  56.     /**
  57.      * @return int
  58.      */
  59.     public function getId(): int
  60.     {
  61.         return $this->id;
  62.     }
  63.     /**
  64.      * @param int $id
  65.      */
  66.     public function setId(int $id): void
  67.     {
  68.         $this->id $id;
  69.     }
  70.     /**
  71.      * @return mixed
  72.      */
  73.     public function getVisaApplication()
  74.     {
  75.         return $this->visaApplication;
  76.     }
  77.     /**
  78.      * @param mixed $visaApplication
  79.      */
  80.     public function setVisaApplication($visaApplication): void
  81.     {
  82.         $this->visaApplication $visaApplication;
  83.     }
  84.     /**
  85.      * @return string
  86.      */
  87.     public function getFileName(): string
  88.     {
  89.         return $this->fileName;
  90.     }
  91.     /**
  92.      * @param string $fileName
  93.      */
  94.     public function setFileName(string $fileName): void
  95.     {
  96.         $this->fileName $fileName;
  97.     }
  98.     /**
  99.      * @return mixed
  100.      */
  101.     public function getFileType()
  102.     {
  103.         return $this->fileType;
  104.     }
  105.     /**
  106.      * @param mixed $fileType
  107.      */
  108.     public function setFileType($fileType): void
  109.     {
  110.         $this->fileType $fileType;
  111.     }
  112.     public function getExtension(): string
  113.     {
  114.         return $this->extension;
  115.     }
  116.     public function setExtension(string $extension): CompanyVisaApplicationDocument
  117.     {
  118.         $this->extension $extension;
  119.         return $this;
  120.     }
  121. }