src/Entity/StaFileType.php line 22

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 Doctrine\ORM\Mapping as ORM;
  8. use Gedmo\Mapping\Annotation as Gedmo;
  9. /**
  10.  * Class StaFileType
  11.  *
  12.  * @ORM\Entity(repositoryClass="App\Repository\StaFileTypeRepository")
  13.  * @ORM\Table(indexes={
  14.  *     @ORM\Index(name="IDX_updated_at", columns={"updated_at"}),
  15.  *     @ORM\Index(name="IDX_deleted_at", columns={"deleted_at"}),
  16.  *     @ORM\Index(name="IDX_is_active", columns={"is_active"})
  17.  * })
  18.  * @Gedmo\SoftDeleteable(fieldName="deletedAt")
  19.  */
  20. class StaFileType
  21. {
  22.     use SoftDeletableEntityTraitStatefulEntityTraitTimestampedEntityTrait;
  23.     /**
  24.      * @var string
  25.      *
  26.      * @ORM\Id()
  27.      * @ORM\Column(length=6)
  28.      */
  29.     private $code;
  30.     /**
  31.      * @var string
  32.      *
  33.      * @ORM\Column(length=100)
  34.      */
  35.     private $name;
  36.     /**
  37.      * @var int
  38.      *
  39.      * @ORM\Column(type="integer")
  40.      */
  41.     private $sortOrder;
  42.     /**
  43.      * @return string
  44.      */
  45.     public function getCode(): string
  46.     {
  47.         return $this->code;
  48.     }
  49.     /**
  50.      * @param string $code
  51.      * @return StaVisaType
  52.      */
  53.     public function setCode(string $code): StaFileType
  54.     {
  55.         $this->code $code;
  56.         return $this;
  57.     }
  58.     /**
  59.      * @return string
  60.      */
  61.     public function getName(): string
  62.     {
  63.         return $this->name;
  64.     }
  65.     /**
  66.      * @param string $name
  67.      * @return StaVisaType
  68.      */
  69.     public function setName(string $name): StaFileType
  70.     {
  71.         $this->name $name;
  72.         return $this;
  73.     }
  74.     public function getSortOrder(): int
  75.     {
  76.         return $this->sortOrder;
  77.     }
  78.     public function setSortOrder(int $sortOrder): StaFileType
  79.     {
  80.         $this->sortOrder $sortOrder;
  81.         return $this;
  82.     }
  83. }