src/Entity/InterestPaidoff.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\InterestPaidoffRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=InterestPaidoffRepository::class)
  7.  */
  8. class InterestPaidoff
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\ManyToOne(targetEntity=Order::class, inversedBy="interestPaidoffs")
  18.      * @ORM\JoinColumn(nullable=false)
  19.      */
  20.     private $orderEntity;
  21.     /**
  22.      * @ORM\Column(type="date", nullable=true)
  23.      */
  24.     private $dateFrom;
  25.     /**
  26.      * @ORM\Column(type="date", nullable=true)
  27.      */
  28.     private $dateTo;
  29.     /**
  30.      * @ORM\Column(type="integer")
  31.      */
  32.     private $days;
  33.     /**
  34.      * @ORM\Column(type="float")
  35.      */
  36.     private $interestTotal;
  37.     /**
  38.      * @ORM\Column(type="float")
  39.      */
  40.     private $interestInvestor;
  41.     /**
  42.      * @ORM\Column(type="float")
  43.      */
  44.     private $interestTax;
  45.     /**
  46.      * @ORM\Column(type="datetime")
  47.      */
  48.     private $created;
  49.     /**
  50.      * @ORM\ManyToOne(targetEntity=User::class, inversedBy="interestPaidoffs")
  51.      */
  52.     private $createdBy;
  53.     /**
  54.      * @ORM\Column(type="datetime", nullable=true)
  55.      */
  56.     private $changed;
  57.     /**
  58.      * @ORM\ManyToOne(targetEntity=User::class)
  59.      */
  60.     private $changedBy;
  61.     /**
  62.      * @ORM\Column(type="string", length=255, nullable=true)
  63.      */
  64.     private $ip;
  65.     /**
  66.      * @ORM\Column(type="string", length=255)
  67.      */
  68.     private $orderNumber;
  69.     /**
  70.      * @ORM\Column(type="string", length=255)
  71.      */
  72.     private $orderFullName;
  73.     /**
  74.      * @ORM\Column(type="string", length=255, nullable=true)
  75.      */
  76.     private $orderBirthdate;
  77.     /**
  78.      * @ORM\Column(type="string", length=255)
  79.      */
  80.     private $bankAccount;
  81.     /**
  82.      * @ORM\Column(type="datetime", nullable=true)
  83.      */
  84.     private $paidDatetime;
  85.     /**
  86.      * @ORM\Column(type="boolean")
  87.      */
  88.     private $deleted false;
  89.     /**
  90.      * @ORM\ManyToOne(targetEntity=InterestPaidoffReport::class, inversedBy="interestPaidoffs")
  91.      * @ORM\JoinColumn(nullable=false)
  92.      */
  93.     private $interestPaidoffReport;
  94.     /**
  95.      * @ORM\Column(type="float")
  96.      */
  97.     private $orderProductInterest;
  98.     /**
  99.      * @ORM\Column(type="float")
  100.      */
  101.     private $orderTotalPrice;
  102.     /**
  103.      * @ORM\Column(type="string", length=8, nullable=true)
  104.      */
  105.     private $orderPersonType;
  106.     public function getId(): ?int
  107.     {
  108.         return $this->id;
  109.     }
  110.     public function getOrderEntity(): ?Order
  111.     {
  112.         return $this->orderEntity;
  113.     }
  114.     public function setOrderEntity(?Order $orderEntity): self
  115.     {
  116.         $this->orderEntity $orderEntity;
  117.         return $this;
  118.     }
  119.     public function getDateFrom(): ?\DateTimeInterface
  120.     {
  121.         return $this->dateFrom;
  122.     }
  123.     public function setDateFrom(?\DateTimeInterface $dateFrom): self
  124.     {
  125.         $this->dateFrom $dateFrom;
  126.         return $this;
  127.     }
  128.     public function getDateTo(): ?\DateTimeInterface
  129.     {
  130.         return $this->dateTo;
  131.     }
  132.     public function setDateTo(?\DateTimeInterface $dateTo): self
  133.     {
  134.         $this->dateTo $dateTo;
  135.         return $this;
  136.     }
  137.     public function getDays(): ?int
  138.     {
  139.         return $this->days;
  140.     }
  141.     public function setDays(int $days): self
  142.     {
  143.         $this->days $days;
  144.         return $this;
  145.     }
  146.     public function getInterestTotal(): ?float
  147.     {
  148.         return $this->interestTotal;
  149.     }
  150.     public function setInterestTotal(float $interestTotal): self
  151.     {
  152.         $this->interestTotal $interestTotal;
  153.         return $this;
  154.     }
  155.     public function getInterestInvestor(): ?float
  156.     {
  157.         return $this->interestInvestor;
  158.     }
  159.     public function setInterestInvestor(float $interestInvestor): self
  160.     {
  161.         $this->interestInvestor $interestInvestor;
  162.         return $this;
  163.     }
  164.     public function getInterestTax(): ?float
  165.     {
  166.         return $this->interestTax;
  167.     }
  168.     public function setInterestTax(float $interestTax): self
  169.     {
  170.         $this->interestTax $interestTax;
  171.         return $this;
  172.     }
  173.     public function getCreated(): ?\DateTimeInterface
  174.     {
  175.         return $this->created;
  176.     }
  177.     public function setCreated(\DateTimeInterface $created): self
  178.     {
  179.         $this->created $created;
  180.         return $this;
  181.     }
  182.     public function getCreatedBy(): ?User
  183.     {
  184.         return $this->createdBy;
  185.     }
  186.     public function setCreatedBy(?User $createdBy): self
  187.     {
  188.         $this->createdBy $createdBy;
  189.         return $this;
  190.     }
  191.     public function getChanged(): ?\DateTimeInterface
  192.     {
  193.         return $this->changed;
  194.     }
  195.     public function setChanged(?\DateTimeInterface $changed): self
  196.     {
  197.         $this->changed $changed;
  198.         return $this;
  199.     }
  200.     public function getChangedBy(): ?User
  201.     {
  202.         return $this->changedBy;
  203.     }
  204.     public function setChangedBy(?User $changedBy): self
  205.     {
  206.         $this->changedBy $changedBy;
  207.         return $this;
  208.     }
  209.     public function getIp(): ?string
  210.     {
  211.         return $this->ip;
  212.     }
  213.     public function setIp(?string $ip): self
  214.     {
  215.         $this->ip $ip;
  216.         return $this;
  217.     }
  218.     public function getOrderNumber(): ?string
  219.     {
  220.         return $this->orderNumber;
  221.     }
  222.     public function setOrderNumber(string $orderNumber): self
  223.     {
  224.         $this->orderNumber $orderNumber;
  225.         return $this;
  226.     }
  227.     public function getOrderFullName(): ?string
  228.     {
  229.         return $this->orderFullName;
  230.     }
  231.     public function setOrderFullName(string $orderFullName): self
  232.     {
  233.         $this->orderFullName $orderFullName;
  234.         return $this;
  235.     }
  236.     public function getOrderBirthdate(): ?string
  237.     {
  238.         return $this->orderBirthdate;
  239.     }
  240.     public function setOrderBirthdate(?string $orderBirthdate): self
  241.     {
  242.         $this->orderBirthdate $orderBirthdate;
  243.         return $this;
  244.     }
  245.     public function getBankAccount(): ?string
  246.     {
  247.         return $this->bankAccount;
  248.     }
  249.     public function setBankAccount(string $bankAccount): self
  250.     {
  251.         $this->bankAccount $bankAccount;
  252.         return $this;
  253.     }
  254.     public function getPaidDatetime(): ?\DateTimeInterface
  255.     {
  256.         return $this->paidDatetime;
  257.     }
  258.     public function setPaidDatetime(?\DateTimeInterface $paidDatetime): self
  259.     {
  260.         $this->paidDatetime $paidDatetime;
  261.         return $this;
  262.     }
  263.     public function isDeleted(): ?bool
  264.     {
  265.         return $this->deleted;
  266.     }
  267.     public function setDeleted(bool $deleted): self
  268.     {
  269.         $this->deleted $deleted;
  270.         return $this;
  271.     }
  272.     public function getInterestPaidoffReport(): ?InterestPaidoffReport
  273.     {
  274.         return $this->interestPaidoffReport;
  275.     }
  276.     public function setInterestPaidoffReport(?InterestPaidoffReport $interestPaidoffReport): self
  277.     {
  278.         $this->interestPaidoffReport $interestPaidoffReport;
  279.         return $this;
  280.     }
  281.     public function getOrderProductInterest(): ?float
  282.     {
  283.         return $this->orderProductInterest;
  284.     }
  285.     public function setOrderProductInterest(?float $orderProductInterest): self
  286.     {
  287.         $this->orderProductInterest = (float)$orderProductInterest;
  288.         return $this;
  289.     }
  290.     public function getOrderTotalPrice(): ?float
  291.     {
  292.         return $this->orderTotalPrice;
  293.     }
  294.     public function setOrderTotalPrice(?float $orderTotalPrice): self
  295.     {
  296.         $this->orderTotalPrice = (float)$orderTotalPrice;
  297.         return $this;
  298.     }
  299.     public function getOrderPersonType(): ?string
  300.     {
  301.         return $this->orderPersonType;
  302.     }
  303.     public function setOrderPersonType(?string $orderPersonType): self
  304.     {
  305.         $this->orderPersonType $orderPersonType;
  306.         return $this;
  307.     }
  308. }