src/Entity/PayementMethod.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PayementMethodRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=PayementMethodRepository::class)
  7.  */
  8. class PayementMethod
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255, nullable=true)
  18.      */
  19.     private $url;
  20.      /**
  21.      * @ORM\Column(type="string", length=255, nullable=true)
  22.      */
  23.     private $phone;
  24.       /**
  25.      * @ORM\Column(type="string", length=255, nullable=true)
  26.      */
  27.     private $nom;
  28.      /**
  29.      * @ORM\Column(type="string", length=255, nullable=true)
  30.      */
  31.     private $prenom;
  32.      /**
  33.      * @ORM\Column(type="string", length=255, nullable=true)
  34.      */
  35.     private $email;
  36.     /**
  37.      * @ORM\Column(type="string", length=255, nullable=true)
  38.      */
  39.     private $file;
  40.     /**
  41.      * @ORM\Column(type="integer", nullable=true)
  42.      */
  43.      /**
  44.     * @ORM\ManyToOne(targetEntity="ConnexionUser",inversedBy="evenementUser")
  45.      */
  46.     private $id_user;
  47.     /**
  48.      * @ORM\Column(type="string", length=255, nullable=true)
  49.      */
  50.     private $montant;
  51.     /**
  52.      * @ORM\Column(type="integer")
  53.      */
  54.     private $orderNumber;
  55.     /**
  56.      * @ORM\Column(type="datetime", nullable=true)
  57.      */
  58.     
  59.     private $dateAd;
  60.     /**
  61.      * @ORM\Column(type="integer", nullable=true)
  62.      */
  63.     
  64.     private $supp;
  65.     /**
  66.      * @ORM\Column(type="boolean")
  67.      */
  68.     private $pai;
  69.     /**
  70.     * @ORM\ManyToOne(targetEntity="Congre",inversedBy="evenementIdCongre")
  71.      */
  72.     private $evenementId;
  73.     /**
  74.     * @ORM\ManyToOne(targetEntity="EvenementAVenir",inversedBy="evenementIdAutre")
  75.      */
  76.     private $evenementautre;
  77.     /**
  78.      * @ORM\Column(type="string", nullable=true)
  79.      */
  80.     
  81.      private $total;
  82.       /**
  83.      * @ORM\Column(type="string", nullable=true)
  84.      */
  85.     
  86.      private $accomp;
  87.     /**
  88.      * @ORM\Column(type="string", nullable=true)
  89.      */
  90.     
  91.      private $pourcentage;
  92.       /**
  93.      * @ORM\Column(type="boolean", nullable=true)
  94.      */
  95.     
  96.      private $surplace;
  97.   /**
  98.      * @ORM\Column(type="boolean", nullable=true)
  99.      */
  100.     
  101.      private $virement;
  102.      /**
  103.      * @ORM\Column(type="string", nullable=true)
  104.      */
  105.     
  106.     
  107.      private $ordernumberid;
  108.      
  109.     /**
  110.      * @ORM\Column(type="string", nullable=true)
  111.      */
  112.      private $adhesion;
  113.     public function getId(): ?int
  114.     {
  115.         return $this->id;
  116.     }
  117.     public function getUrl(): ?string
  118.     {
  119.         return $this->url;
  120.     }
  121.     public function setUrl(?string $url): self
  122.     {
  123.         $this->url $url;
  124.         return $this;
  125.     }
  126.     public function getIdUser(): ?ConnexionUser
  127.     {
  128.         return $this->id_user;
  129.     }
  130.     public function setIdUser(?ConnexionUser $id_user): self
  131.     {
  132.         $this->id_user $id_user;
  133.         return $this;
  134.     }
  135.     public function getMontant(): ?string
  136.     {
  137.         return $this->montant;
  138.     }
  139.     public function setMontant(?string $montant): self
  140.     {
  141.         $this->montant $montant;
  142.         return $this;
  143.     }
  144.     public function getOrderNumber(): ?int
  145.     {
  146.         return $this->orderNumber;
  147.     }
  148.     public function setOrderNumber(int $orderNumber): self
  149.     {
  150.         $this->orderNumber $orderNumber;
  151.         return $this;
  152.     }
  153.     public function getSupp(): ?int
  154.     {
  155.         return $this->supp;
  156.     }
  157.     public function setSupp(int $supp): self
  158.     {
  159.         $this->supp $supp;
  160.         return $this;
  161.     }
  162.     
  163.     public function getDateAd(): ?\DateTimeInterface
  164.     {
  165.         return $this->dateAd;
  166.     }
  167.     public function setDateAd(?\DateTimeInterface $dateAd): self
  168.     {
  169.         $this->dateAd $dateAd;
  170.         return $this;
  171.     }
  172.     public function getPai(): ?bool
  173.     {
  174.         return $this->pai;
  175.     }
  176.     public function setPai(bool $pai): self
  177.     {
  178.         $this->pai $pai;
  179.         return $this;
  180.     }
  181.     /****** suplace */
  182.     public function getSurPlace(): ?bool
  183.     {
  184.         return $this->surplace;
  185.     }
  186.     public function setSurPlace(bool $surplace): self
  187.     {
  188.         $this->surplace $surplace;
  189.         return $this;
  190.     }
  191.     public function getVirement(): ?bool
  192.     {
  193.         return $this->virement;
  194.     }
  195.     public function setVirement(bool $virement): self
  196.     {
  197.         $this->virement $virement;
  198.         return $this;
  199.     }
  200.     /****** */
  201.     public function getEvenementId(): ?Congre
  202.     {
  203.         return $this->evenementId;
  204.     }
  205.     public function setEvenementId(?Congre $evenementId): self
  206.     {
  207.         $this->evenementId $evenementId;
  208.         return $this;
  209.     }
  210.     public function getEvenementautre(): ?EvenementAVenir
  211.     {
  212.         return $this->evenementautre;
  213.     }
  214.     public function setEvenementautre(?EvenementAVenir $evenementautre): self
  215.     {
  216.         $this->evenementautre $evenementautre;
  217.         return $this;
  218.     }
  219.     public function getTotal(): ?string
  220.     {
  221.         return $this->total;
  222.     }
  223.     public function setTotal(?string $total): self
  224.     {
  225.         $this->total $total;
  226.         return $this;
  227.     }
  228.     public function getPourcentage(): ?string
  229.     {
  230.         return $this->pourcentage;
  231.     }
  232.     public function setPourcentage(?string $pourcentage): self
  233.     {
  234.         $this->pourcentage $pourcentage;
  235.         return $this;
  236.     }
  237.     /***** nom prenom et email */
  238.     public function getNom(): ?string
  239.     {
  240.         return $this->nom;
  241.     }
  242.     public function setNom(?string $nom): self
  243.     {
  244.         $this->nom $nom;
  245.         return $this;
  246.     }
  247.     public function getPrenom(): ?string
  248.     {
  249.         return $this->prenom;
  250.     }
  251.     public function setPrenom(?string $prenom): self
  252.     {
  253.         $this->prenom $prenom;
  254.         return $this;
  255.     }
  256.     public function getEmail(): ?string
  257.     {
  258.         return $this->email;
  259.     }
  260.     public function setEmail(?string $email): self
  261.     {
  262.         $this->email $email;
  263.         return $this;
  264.     }
  265.     public function getFile(): ?string
  266.     {
  267.         return $this->file;
  268.     }
  269.     public function setFile(?string $file): self
  270.     {
  271.         $this->file $file;
  272.         return $this;
  273.     }
  274.     /*** */
  275.     public function getAdhesion(): ?string
  276.     {
  277.         return $this->adhesion;
  278.     }
  279.     public function setAdhesion(?string $adhesion): self
  280.     {
  281.         $this->adhesion $adhesion;
  282.         return $this;
  283.     }
  284.     public function getOrdernumberid(): ?string
  285.     {
  286.         return $this->ordernumberid;
  287.     }
  288.     public function setOrdernumberid(?string $ordernumberid): self
  289.     {
  290.         $this->ordernumberid $ordernumberid;
  291.         return $this;
  292.     }
  293.     public function getPhone(): ?string
  294.     {
  295.         return $this->phone;
  296.     }
  297.     public function setPhone(?string $phone): self
  298.     {
  299.         $this->phone $phone;
  300.         return $this;
  301.     }
  302.     public function getAccomp(): ?string
  303.     {
  304.         return $this->accomp;
  305.     }
  306.     public function setAccomp(?string $accomp): self
  307.     {
  308.         $this->accomp $accomp;
  309.         return $this;
  310.     }
  311. }