src/Entity/LicenseCompany.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\LicenseCompanyRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=LicenseCompanyRepository::class)
  7.  */
  8. class LicenseCompany
  9. {
  10.     const NEW = '0';
  11.     const READY '1';
  12.     const ACTIVE '2';
  13.     const EXPIRED '3';
  14.     const RENEWED '4';
  15.     const CANCELED '5';
  16.     /**
  17.      * @ORM\Id
  18.      * @ORM\GeneratedValue
  19.      * @ORM\Column(type="integer")
  20.      */
  21.     private $id;
  22.     /**
  23.      * @ORM\ManyToOne(targetEntity=License::class, inversedBy="licenseCompanies")
  24.      * @ORM\JoinColumn(onDelete="CASCADE")
  25.      * @ORM\JoinColumn(nullable=false)
  26.      */
  27.     private $license;
  28.     /**
  29.      * @ORM\ManyToOne(targetEntity=Company::class, inversedBy="licenseCompanies")
  30.      * @ORM\JoinColumn(onDelete="CASCADE")
  31.      * @ORM\JoinColumn(nullable=false)
  32.      */
  33.     private $company;
  34.     /**
  35.      * @ORM\Column(type="datetime")
  36.      */
  37.     private $date_added;
  38.     /**
  39.      * @ORM\Column(type="datetime")
  40.      */
  41.     private $date_start;
  42.     /**
  43.      * @ORM\Column(type="datetime")
  44.      */
  45.     private $date_end;
  46.     /**
  47.      * 1: Preparado, 2: Activo, 3: Vencido, 4: Renovado, 5: Baja
  48.      *
  49.      * @ORM\Column(type="smallint")
  50.      */
  51.     private $state;
  52.     /**
  53.      * @ORM\Column(type="datetime", nullable=true)
  54.      */
  55.     private $date_updated;
  56.     /**
  57.      * 1: Mensual, 2: Anual
  58.      *
  59.      * @ORM\Column(type="smallint")
  60.      */
  61.     private $renewal;
  62.     /**
  63.      * 0: Automatic renewal, 1: Manual renewal
  64.      *
  65.      * @ORM\Column(type="smallint")
  66.      */
  67.     private $renewal_type;
  68.     public function getId(): ?int
  69.     {
  70.         return $this->id;
  71.     }
  72.     public function getLicense(): ?License
  73.     {
  74.         return $this->license;
  75.     }
  76.     public function setLicense(?License $license): self
  77.     {
  78.         $this->license $license;
  79.         return $this;
  80.     }
  81.     public function getCompany(): ?Company
  82.     {
  83.         return $this->company;
  84.     }
  85.     public function setCompany(?Company $company): self
  86.     {
  87.         $this->company $company;
  88.         return $this;
  89.     }
  90.     public function getDateAdded(): ?\DateTimeInterface
  91.     {
  92.         return $this->date_added;
  93.     }
  94.     public function setDateAdded(\DateTimeInterface $date_added): self
  95.     {
  96.         $this->date_added $date_added;
  97.         return $this;
  98.     }
  99.     public function getDateStart(): ?\DateTimeInterface
  100.     {
  101.         return $this->date_start;
  102.     }
  103.     public function setDateStart(\DateTimeInterface $date_start): self
  104.     {
  105.         $this->date_start $date_start;
  106.         return $this;
  107.     }
  108.     public function getDateEnd(): ?\DateTimeInterface
  109.     {
  110.         return $this->date_end;
  111.     }
  112.     public function setDateEnd(\DateTimeInterface $date_end): self
  113.     {
  114.         $this->date_end $date_end;
  115.         return $this;
  116.     }
  117.     public function getState(): ?int
  118.     {
  119.         return $this->state;
  120.     }
  121.     public function setState(int $state): self
  122.     {
  123.         $this->state $state;
  124.         return $this;
  125.     }
  126.     public function getDateUpdated(): ?\DateTimeInterface
  127.     {
  128.         return $this->date_updated;
  129.     }
  130.     public function setDateUpdated(?\DateTimeInterface $date_updated): self
  131.     {
  132.         $this->date_updated $date_updated;
  133.         return $this;
  134.     }
  135.     public function getRenewal(): ?int
  136.     {
  137.         return $this->renewal;
  138.     }
  139.     public function setRenewal(int $renewal): self
  140.     {
  141.         $this->renewal $renewal;
  142.         return $this;
  143.     }
  144.     /**
  145.      * @return mixed
  146.      */
  147.     public function getRenewalType()
  148.     {
  149.         return $this->renewal_type;
  150.     }
  151.     /**
  152.      * @param mixed $renewal_type
  153.      */
  154.     public function setRenewalType($renewal_type): void
  155.     {
  156.         $this->renewal_type $renewal_type;
  157.     }
  158. }