src/Entity/BFPaymentIntentAdmin.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * @ORM\Entity(repositoryClass="App\Repository\BFPaymentIntentAdminRepository")
  6.  */
  7. class BFPaymentIntentAdmin
  8. {
  9.     /**
  10.      * @ORM\Id()
  11.      * @ORM\GeneratedValue()
  12.      * @ORM\Column(type="integer")
  13.      */
  14.     private $id;
  15.     /**
  16.      * @ORM\Column(type="string", length=255)
  17.      */
  18.     private $email;
  19.     /**
  20.      * @ORM\Column(type="string", length=255, nullable=true)
  21.      */
  22.     private $stripeid;
  23.     /**
  24.      * @ORM\Column(type="string", length=255, nullable=true)
  25.      */
  26.     private $nameclient;
  27.     /**
  28.      * @ORM\Column(type="string", length=255, nullable=true)
  29.      */
  30.     private $entityclient;
  31.     /**
  32.      * @ORM\Column(type="integer")
  33.      */
  34.     private $price;
  35.     /**
  36.      * @ORM\Column(type="text")
  37.      */
  38.     private $description;
  39.     /**
  40.      * @ORM\Column(type="datetime")
  41.      */
  42.     private $creationdate;
  43.     /**
  44.      * @ORM\Column(type="datetime", nullable=true)
  45.      */
  46.     private $successdate;
  47.     
  48.     public function __construct()
  49.     {
  50.         $this->creationdate= new \DateTime();
  51.     }
  52.     public function getId(): ?int
  53.     {
  54.         return $this->id;
  55.     }
  56.     public function getEmail(): ?string
  57.     {
  58.         return $this->email;
  59.     }
  60.     public function setEmail(string $email): self
  61.     {
  62.         $this->email $email;
  63.         return $this;
  64.     }
  65.     public function getStripeid(): ?string
  66.     {
  67.         return $this->stripeid;
  68.     }
  69.     public function setStripeid(?string $stripeid): self
  70.     {
  71.         $this->stripeid $stripeid;
  72.         return $this;
  73.     }
  74.     public function getNameclient(): ?string
  75.     {
  76.         return $this->nameclient;
  77.     }
  78.     public function setNameclient(?string $nameclient): self
  79.     {
  80.         $this->nameclient $nameclient;
  81.         return $this;
  82.     }
  83.     public function getEntityclient(): ?string
  84.     {
  85.         return $this->entityclient;
  86.     }
  87.     public function setEntityclient(?string $entityclient): self
  88.     {
  89.         $this->entityclient $entityclient;
  90.         return $this;
  91.     }
  92.     public function getPrice(): ?int
  93.     {
  94.         return $this->price;
  95.     }
  96.     public function setPrice(int $price): self
  97.     {
  98.         $this->price $price;
  99.         return $this;
  100.     }
  101.     public function getDescription(): ?string
  102.     {
  103.         return $this->description;
  104.     }
  105.     public function setDescription(string $description): self
  106.     {
  107.         $this->description $description;
  108.         return $this;
  109.     }
  110.     public function getCreationdate(): ?\DateTimeInterface
  111.     {
  112.         return $this->creationdate;
  113.     }
  114.     public function setCreationdate(\DateTimeInterface $creationdate): self
  115.     {
  116.         $this->creationdate $creationdate;
  117.         return $this;
  118.     }
  119.     public function getSuccessdate(): ?\DateTimeInterface
  120.     {
  121.         return $this->successdate;
  122.     }
  123.     public function setSuccessdate(?\DateTimeInterface $successdate): self
  124.     {
  125.         $this->successdate $successdate;
  126.         return $this;
  127.     }
  128.     
  129.     public function getDisplayprice() : ?float 
  130.     {
  131.         return $this->getPrice()/100;
  132.     }
  133. }