src/Entity/Payment.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PaymentRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=PaymentRepository::class)
  7.  */
  8. class Payment
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="integer")
  18.      */
  19.     private $amount;
  20.     /**
  21.      * @ORM\Column(type="string", length=255)
  22.      */
  23.     private $res;
  24.     /**
  25.      * @ORM\Column(type="string", length=255, nullable=true)
  26.      */
  27.     private $token;
  28.     /**
  29.      * @ORM\Column(type="string", length=255, nullable=true)
  30.      */
  31.     private $ref;
  32.     /**
  33.      * @ORM\Column(type="string", length=10, nullable=true)
  34.      */
  35.     private $status;
  36.     /**
  37.      * @ORM\Column(type="datetime")
  38.      */
  39.     private $created_at;
  40.     /**
  41.      * @ORM\ManyToOne(targetEntity=User::class, inversedBy="payments")
  42.      */
  43.     private $created_by;
  44.     /**
  45.      * @ORM\Column(type="string", length=255, nullable=true)
  46.      */
  47.     private $traceNo;
  48.     /**
  49.      * @ORM\Column(type="string", length=255, nullable=true)
  50.      */
  51.     private $card;
  52.     public function getId(): ?int
  53.     {
  54.         return $this->id;
  55.     }
  56.     public function getAmount(): ?int
  57.     {
  58.         return $this->amount;
  59.     }
  60.     public function setAmount(int $amount): self
  61.     {
  62.         $this->amount $amount;
  63.         return $this;
  64.     }
  65.     public function getRes(): ?string
  66.     {
  67.         return $this->res;
  68.     }
  69.     public function setRes(string $res): self
  70.     {
  71.         $this->res $res;
  72.         return $this;
  73.     }
  74.     public function getToken(): ?string
  75.     {
  76.         return $this->token;
  77.     }
  78.     public function setToken(?string $token): self
  79.     {
  80.         $this->token $token;
  81.         return $this;
  82.     }
  83.     public function getRef(): ?string
  84.     {
  85.         return $this->ref;
  86.     }
  87.     public function setRef(?string $ref): self
  88.     {
  89.         $this->ref $ref;
  90.         return $this;
  91.     }
  92.     public function getStatus(): ?string
  93.     {
  94.         return $this->status;
  95.     }
  96.     public function setStatus(?string $status): self
  97.     {
  98.         $this->status $status;
  99.         return $this;
  100.     }
  101.     public function getCreatedAt(): ?\DateTimeInterface
  102.     {
  103.         return $this->created_at;
  104.     }
  105.     public function setCreatedAt(\DateTimeInterface $created_at): self
  106.     {
  107.         $this->created_at $created_at;
  108.         return $this;
  109.     }
  110.     public function getCreatedBy(): ?User
  111.     {
  112.         return $this->created_by;
  113.     }
  114.     public function setCreatedBy(?User $created_by): self
  115.     {
  116.         $this->created_by $created_by;
  117.         return $this;
  118.     }
  119.     public function getTraceNo(): ?string
  120.     {
  121.         return $this->traceNo;
  122.     }
  123.     public function setTraceNo(?string $traceNo): self
  124.     {
  125.         $this->traceNo $traceNo;
  126.         return $this;
  127.     }
  128.     public function getCard(): ?string
  129.     {
  130.         return $this->card;
  131.     }
  132.     public function setCard(?string $card): self
  133.     {
  134.         $this->card $card;
  135.         return $this;
  136.     }
  137. }