src/Entity/ExercisingClaimRequest.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Gedmo\Mapping\Annotation as Gedmo;
  5. /**
  6.  * ExercisingClaimRequest
  7.  *
  8.  * @ORM\Table(name="exercising_claim_request", uniqueConstraints={@ORM\UniqueConstraint(name="exercising_claim_request_id_uindex", columns={"id"})}, indexes={@ORM\Index(name="exercising_claim_request_user_id_fk", columns={"user_id"})})
  9.  * @ORM\Entity(repositoryClass="App\Repository\ExercisingClaimRequestRepository")
  10.  * @Gedmo\Loggable
  11.  */
  12. class ExercisingClaimRequest
  13. {
  14.     /**
  15.      * @var integer
  16.      *
  17.      * @ORM\Column(name="id", type="integer", nullable=false)
  18.      * @ORM\Id
  19.      * @ORM\GeneratedValue(strategy="IDENTITY")
  20.      */
  21.     private $id;
  22.     /**
  23.      * @var \DateTime
  24.      *
  25.      * @ORM\Column(name="request_date", type="datetime", nullable=true)
  26.      * @Gedmo\Versioned
  27.      */
  28.     private $requestDate;
  29.     /**
  30.      * @var string
  31.      *
  32.      * @ORM\Column(name="rights", type="string", length=255, nullable=true)
  33.      * @Gedmo\Versioned
  34.      */
  35.     private $rights;
  36.     /**
  37.      * @var string
  38.      *
  39.      * @ORM\Column(name="customer", type="string", length=255, nullable=true)
  40.      * @Gedmo\Versioned
  41.      */
  42.     private $customer;
  43.     /**
  44.      * @var \DateTime
  45.      *
  46.      * @ORM\Column(name="answer_date", type="datetime", nullable=true)
  47.      * @Gedmo\Versioned
  48.      */
  49.     private $answerDate;
  50.     /**
  51.      * @var string
  52.      *
  53.      * @ORM\Column(name="accountant_name", type="string", length=255, nullable=true)
  54.      * @Gedmo\Versioned
  55.      */
  56.     private $accountantName;
  57.     /**
  58.      * @var string
  59.      *
  60.      * @ORM\Column(name="accountant_email", type="string", length=255, nullable=true)
  61.      * @Gedmo\Versioned
  62.      */
  63.     private $accountantEmail;
  64.     /**
  65.      * @var string
  66.      *
  67.      * @ORM\Column(name="precisions", type="string", length=65535, nullable=true)
  68.      * @Gedmo\Versioned
  69.      */
  70.     private $precisions;
  71.     /**
  72.      * @var string
  73.      *
  74.      * @ORM\Column(name="file", type="string", length=255, nullable=true)
  75.      * @Gedmo\Versioned
  76.      */
  77.     private $file;
  78.     /**
  79.      * @var User
  80.      *
  81.      * @ORM\ManyToOne(targetEntity="User")
  82.      * @ORM\JoinColumns({
  83.      *   @ORM\JoinColumn(name="user_id", referencedColumnName="id")
  84.      * })
  85.      */
  86.     private $user;
  87.     /**
  88.      * @return int
  89.      */
  90.     public function getId()
  91.     {
  92.         return $this->id;
  93.     }
  94.     /**
  95.      * @param int $id
  96.      */
  97.     public function setId($id)
  98.     {
  99.         $this->id $id;
  100.     }
  101.     /**
  102.      * @return \DateTime
  103.      */
  104.     public function getRequestDate()
  105.     {
  106.         return $this->requestDate;
  107.     }
  108.     /**
  109.      * @param \DateTime $requestDate
  110.      */
  111.     public function setRequestDate($requestDate)
  112.     {
  113.         $this->requestDate $requestDate;
  114.     }
  115.     /**
  116.      * @return string
  117.      */
  118.     public function getRights()
  119.     {
  120.         return $this->rights;
  121.     }
  122.     /**
  123.      * @param string $rights
  124.      */
  125.     public function setRights($rights)
  126.     {
  127.         $this->rights $rights;
  128.     }
  129.     /**
  130.      * @return string
  131.      */
  132.     public function getCustomer()
  133.     {
  134.         return $this->customer;
  135.     }
  136.     /**
  137.      * @param string $customer
  138.      */
  139.     public function setCustomer($customer)
  140.     {
  141.         $this->customer $customer;
  142.     }
  143.     /**
  144.      * @return \DateTime
  145.      */
  146.     public function getAnswerDate()
  147.     {
  148.         return $this->answerDate;
  149.     }
  150.     /**
  151.      * @param \DateTime $answerDate
  152.      */
  153.     public function setAnswerDate($answerDate)
  154.     {
  155.         $this->answerDate $answerDate;
  156.     }
  157.     /**
  158.      * @return string
  159.      */
  160.     public function getAccountantName()
  161.     {
  162.         return $this->accountantName;
  163.     }
  164.     /**
  165.      * @param string $accountantName
  166.      */
  167.     public function setAccountantName($accountantName)
  168.     {
  169.         $this->accountantName $accountantName;
  170.     }
  171.     /**
  172.      * @return string
  173.      */
  174.     public function getAccountantEmail()
  175.     {
  176.         return $this->accountantEmail;
  177.     }
  178.     /**
  179.      * @param string $accountantEmail
  180.      */
  181.     public function setAccountantEmail($accountantEmail)
  182.     {
  183.         $this->accountantEmail $accountantEmail;
  184.     }
  185.     /**
  186.      * @return string
  187.      */
  188.     public function getPrecisions()
  189.     {
  190.         return $this->precisions;
  191.     }
  192.     /**
  193.      * @param string $precisions
  194.      */
  195.     public function setPrecisions($precisions)
  196.     {
  197.         $this->precisions $precisions;
  198.     }
  199.     /**
  200.      * @return string
  201.      */
  202.     public function getFile()
  203.     {
  204.         return $this->file;
  205.     }
  206.     /**
  207.      * @param string $file
  208.      */
  209.     public function setFile($file)
  210.     {
  211.         $this->file $file;
  212.     }
  213.     /**
  214.      * @return User
  215.      */
  216.     public function getUser()
  217.     {
  218.         return $this->user;
  219.     }
  220.     /**
  221.      * @param User $user
  222.      */
  223.     public function setUser($user)
  224.     {
  225.         $this->user $user;
  226.     }
  227. }