<?php
namespace App\Entity\System;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Table(name="subscription_customer_type")
*
* @ORM\Entity(repositoryClass="App\Repository\System\SubscriptionCustomerTypeRepository")
*/
class SubscriptionCustomerType
{
public const RECRUIMENT = 1;
public const MIGRATION = 2;
public const GIFT = 3;
public const COPY = 4;
/**
* @var int
*
* @ORM\Id
*
* @ORM\GeneratedValue(strategy="AUTO")
*
* @ORM\Column(type="integer", name="id")
*/
private $id;
/**
* @var string
*
* @ORM\Column(type="string")
*/
private $type;
/**
* @return int
*/
public function getId(): int
{
return $this->id;
}
/**
* @return string
*/
public function getType(): string
{
return $this->type;
}
}