src/Entity/SepaOrder.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * @ORM\Entity
  6.  */
  7. class SepaOrder
  8. {
  9.     /**
  10.      * @ORM\Id
  11.      * @ORM\GeneratedValue
  12.      * @ORM\Column(type="integer")
  13.      *
  14.      * @var int
  15.      */
  16.     protected $id;
  17.     /**
  18.      * @ORM\Column(type="decimal", precision=18, scale=0, nullable=false)
  19.      *
  20.      * @var int
  21.      */
  22.     protected $customerNumber;
  23.     /**
  24.      * @ORM\Column(type="string")
  25.      *
  26.      * @var string
  27.      */
  28.     protected $status;
  29.     /**
  30.      * @ORM\Column(type="datetime")
  31.      *
  32.      * @var \DateTime
  33.      */
  34.     protected $date;
  35.     /**
  36.      * @ORM\Column(type="text", nullable=true)
  37.      *
  38.      * @var string
  39.      */
  40.     protected $vadsReturn;
  41.     /**
  42.      * @ORM\Column(type="string", nullable=true)
  43.      *
  44.      * @var string
  45.      */
  46.     protected $rum;
  47.     /**
  48.      * @ORM\Column(type="string", nullable=true)
  49.      *
  50.      * @var string
  51.      */
  52.     protected $ibanBic;
  53.     /**
  54.      * @ORM\Column(type="string", nullable=true)
  55.      *
  56.      * @var string
  57.      */
  58.     protected $ibanHolder;
  59.     /**
  60.      * @ORM\Column(type="integer", length=2, nullable=true)
  61.      *
  62.      * @var int
  63.      */
  64.     protected $expiryMonth;
  65.     /**
  66.      * @ORM\Column(type="integer", length=4, nullable=true)
  67.      *
  68.      * @var int
  69.      */
  70.     protected $expiryYear;
  71.     public function getId(): int
  72.     {
  73.         return $this->id;
  74.     }
  75.     /**
  76.      * @return SepaOrder
  77.      */
  78.     public function setId(int $id): self
  79.     {
  80.         $this->id $id;
  81.         return $this;
  82.     }
  83.     public function getCustomerNumber(): int
  84.     {
  85.         return $this->customerNumber;
  86.     }
  87.     /**
  88.      * @return SepaOrder
  89.      */
  90.     public function setCustomerNumber(int $customerNumber): self
  91.     {
  92.         $this->customerNumber $customerNumber;
  93.         return $this;
  94.     }
  95.     public function getStatus(): string
  96.     {
  97.         return $this->status;
  98.     }
  99.     /**
  100.      * @return SepaOrder
  101.      */
  102.     public function setStatus(string $status): self
  103.     {
  104.         $this->status $status;
  105.         return $this;
  106.     }
  107.     public function getDate(): \DateTime
  108.     {
  109.         return $this->date;
  110.     }
  111.     /**
  112.      * @return SepaOrder
  113.      */
  114.     public function setDate(\DateTime $date): self
  115.     {
  116.         $this->date $date;
  117.         return $this;
  118.     }
  119.     public function getVadsReturn(): string
  120.     {
  121.         return $this->vadsReturn;
  122.     }
  123.     /**
  124.      * @return SepaOrder
  125.      */
  126.     public function setVadsReturn(string $vadsReturn): self
  127.     {
  128.         $this->vadsReturn $vadsReturn;
  129.         return $this;
  130.     }
  131.     public function getRum(): string
  132.     {
  133.         return $this->rum;
  134.     }
  135.     /**
  136.      * @return SepaOrder
  137.      */
  138.     public function setRum(string $rum): self
  139.     {
  140.         $this->rum $rum;
  141.         return $this;
  142.     }
  143.     public function getIbanBic(): string
  144.     {
  145.         return $this->ibanBic;
  146.     }
  147.     /**
  148.      * @return SepaOrder
  149.      */
  150.     public function setIbanBic(string $ibanBic): self
  151.     {
  152.         $this->ibanBic $ibanBic;
  153.         return $this;
  154.     }
  155.     public function getIbanHolder(): string
  156.     {
  157.         return $this->ibanHolder;
  158.     }
  159.     /**
  160.      * @return SepaOrder
  161.      */
  162.     public function setIbanHolder(string $ibanHolder): self
  163.     {
  164.         $this->ibanHolder $ibanHolder;
  165.         return $this;
  166.     }
  167.     public function getExpiryMonth(): int
  168.     {
  169.         return $this->expiryMonth;
  170.     }
  171.     /**
  172.      * @return SepaOrder
  173.      */
  174.     public function setExpiryMonth(int $expiryMonth): self
  175.     {
  176.         $this->expiryMonth $expiryMonth;
  177.         return $this;
  178.     }
  179.     public function getExpiryYear(): int
  180.     {
  181.         return $this->expiryYear;
  182.     }
  183.     /**
  184.      * @return SepaOrder
  185.      */
  186.     public function setExpiryYear(int $expiryYear): self
  187.     {
  188.         $this->expiryYear $expiryYear;
  189.         return $this;
  190.     }
  191. }