<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
*/
class SepaOrder
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*
* @var int
*/
protected $id;
/**
* @ORM\Column(type="decimal", precision=18, scale=0, nullable=false)
*
* @var int
*/
protected $customerNumber;
/**
* @ORM\Column(type="string")
*
* @var string
*/
protected $status;
/**
* @ORM\Column(type="datetime")
*
* @var \DateTime
*/
protected $date;
/**
* @ORM\Column(type="text", nullable=true)
*
* @var string
*/
protected $vadsReturn;
/**
* @ORM\Column(type="string", nullable=true)
*
* @var string
*/
protected $rum;
/**
* @ORM\Column(type="string", nullable=true)
*
* @var string
*/
protected $ibanBic;
/**
* @ORM\Column(type="string", nullable=true)
*
* @var string
*/
protected $ibanHolder;
/**
* @ORM\Column(type="integer", length=2, nullable=true)
*
* @var int
*/
protected $expiryMonth;
/**
* @ORM\Column(type="integer", length=4, nullable=true)
*
* @var int
*/
protected $expiryYear;
public function getId(): int
{
return $this->id;
}
/**
* @return SepaOrder
*/
public function setId(int $id): self
{
$this->id = $id;
return $this;
}
public function getCustomerNumber(): int
{
return $this->customerNumber;
}
/**
* @return SepaOrder
*/
public function setCustomerNumber(int $customerNumber): self
{
$this->customerNumber = $customerNumber;
return $this;
}
public function getStatus(): string
{
return $this->status;
}
/**
* @return SepaOrder
*/
public function setStatus(string $status): self
{
$this->status = $status;
return $this;
}
public function getDate(): \DateTime
{
return $this->date;
}
/**
* @return SepaOrder
*/
public function setDate(\DateTime $date): self
{
$this->date = $date;
return $this;
}
public function getVadsReturn(): string
{
return $this->vadsReturn;
}
/**
* @return SepaOrder
*/
public function setVadsReturn(string $vadsReturn): self
{
$this->vadsReturn = $vadsReturn;
return $this;
}
public function getRum(): string
{
return $this->rum;
}
/**
* @return SepaOrder
*/
public function setRum(string $rum): self
{
$this->rum = $rum;
return $this;
}
public function getIbanBic(): string
{
return $this->ibanBic;
}
/**
* @return SepaOrder
*/
public function setIbanBic(string $ibanBic): self
{
$this->ibanBic = $ibanBic;
return $this;
}
public function getIbanHolder(): string
{
return $this->ibanHolder;
}
/**
* @return SepaOrder
*/
public function setIbanHolder(string $ibanHolder): self
{
$this->ibanHolder = $ibanHolder;
return $this;
}
public function getExpiryMonth(): int
{
return $this->expiryMonth;
}
/**
* @return SepaOrder
*/
public function setExpiryMonth(int $expiryMonth): self
{
$this->expiryMonth = $expiryMonth;
return $this;
}
public function getExpiryYear(): int
{
return $this->expiryYear;
}
/**
* @return SepaOrder
*/
public function setExpiryYear(int $expiryYear): self
{
$this->expiryYear = $expiryYear;
return $this;
}
}