src/Entity/Agency.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\AgencyRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=AgencyRepository::class)
  7.  * @ORM\HasLifecycleCallbacks()
  8.  */
  9. class Agency
  10. {
  11.     /**
  12.      * @ORM\Id
  13.      * @ORM\GeneratedValue
  14.      * @ORM\Column(type="integer")
  15.      */
  16.     private $id;
  17.     /**
  18.      * @ORM\Column(type="integer")
  19.      */
  20.     private $saleId;
  21.     /**
  22.      * @ORM\Column(type="string", length=255)
  23.      */
  24.     private $procedureLocation;
  25.     /**
  26.      * @ORM\Column(type="date")
  27.      */
  28.     private $procedureDate;
  29.     /**
  30.      * @ORM\Column(type="time")
  31.      */
  32.     private $procedureTime;
  33.     /**
  34.      * @ORM\Column(type="string", length=255)
  35.      */
  36.     private $businessPrice;
  37.     /**
  38.      * @ORM\Column(type="text", nullable=true)
  39.      */
  40.     private $businessPayment;
  41.     /**
  42.      * @ORM\Column(type="text", nullable=true)
  43.      */
  44.     private $businessExpenses;
  45.     /**
  46.      * @ORM\Column(type="text", nullable=true)
  47.      */
  48.     private $businessDocumentation;
  49.     /**
  50.      * @ORM\Column(type="string", length=255, nullable=true)
  51.      */
  52.     private $moneyAdvance;
  53.     /**
  54.      * @ORM\Column(type="string", length=255, nullable=true)
  55.      */
  56.     private $sellerAlternative;
  57.     /**
  58.      * @ORM\Column(type="string", length=255)
  59.      */
  60.     private $sellerName;
  61.     /**
  62.      * @ORM\Column(type="string", length=255)
  63.      */
  64.     private $sellerDNI;
  65.     /**
  66.      * @ORM\Column(type="string", length=255)
  67.      */
  68.     private $sellerAddressName;
  69.     /**
  70.      * @ORM\Column(type="string", length=10)
  71.      */
  72.     private $sellerAddressNumber;
  73.     /**
  74.      * @ORM\Column(type="string", length=3)
  75.      */
  76.     private $sellerAddressFloor;
  77.     /**
  78.      * @ORM\Column(type="string", length=3)
  79.      */
  80.     private $sellerAddressApartment;
  81.     /**
  82.      * @ORM\Column(type="datetime")
  83.      */
  84.     private $createdAt;
  85.     /**
  86.      * @ORM\Column(type="datetime", nullable=true)
  87.      */
  88.     private $updatedAt;
  89.     /**
  90.      * @ORM\Column(type="boolean", nullable=true)
  91.      */
  92.     private $enabledNotification;
  93.     /**
  94.      * @ORM\Column(type="text", nullable=true)
  95.      */
  96.     private $mandateSalePrice;
  97.     /**
  98.      * @ORM\Column(type="text", nullable=true)
  99.      */
  100.     private $mandateRetirementCost;
  101.     /**
  102.      * @ORM\Column(type="text", nullable=true)
  103.      */
  104.     private $mandateOthers;
  105.     /**
  106.      * @ORM\Column(type="text", nullable=true)
  107.      */
  108.     private $mandateIsShow;
  109.     /**
  110.      * @ORM\Column(type="string", length=50, nullable=true)
  111.      */
  112.     private $status;
  113.     public function getId(): ?int
  114.     {
  115.         return $this->id;
  116.     }
  117.     public function getProcedureLocation(): ?string
  118.     {
  119.         return $this->procedureLocation;
  120.     }
  121.     public function setProcedureLocation(string $procedureLocation): self
  122.     {
  123.         $this->procedureLocation $procedureLocation;
  124.         return $this;
  125.     }
  126.     public function getProcedureDate(): ?\DateTimeInterface
  127.     {
  128.         return $this->procedureDate;
  129.     }
  130.     public function setProcedureDate(\DateTimeInterface $procedureDate): self
  131.     {
  132.         $this->procedureDate $procedureDate;
  133.         return $this;
  134.     }
  135.     public function getProcedureTime(): ?\DateTimeInterface
  136.     {
  137.         return $this->procedureTime;
  138.     }
  139.     public function setProcedureTime(\DateTimeInterface $procedureTime): self
  140.     {
  141.         $this->procedureTime $procedureTime;
  142.         return $this;
  143.     }
  144.     public function getBusinessPrice(): ?string
  145.     {
  146.         return $this->businessPrice;
  147.     }
  148.     public function setBusinessPrice(string $businessPrice): self
  149.     {
  150.         $this->businessPrice $businessPrice;
  151.         return $this;
  152.     }
  153.     public function getBusinessPayment(): ?string
  154.     {
  155.         return $this->businessPayment;
  156.     }
  157.     public function setBusinessPayment(?string $businessPayment): self
  158.     {
  159.         $this->businessPayment $businessPayment;
  160.         return $this;
  161.     }
  162.     public function getBusinessExpenses(): ?string
  163.     {
  164.         return $this->businessExpenses;
  165.     }
  166.     public function setBusinessExpenses(?string $businessExpenses): self
  167.     {
  168.         $this->businessExpenses $businessExpenses;
  169.         return $this;
  170.     }
  171.     public function getBusinessDocumentation(): ?string
  172.     {
  173.         return $this->businessDocumentation;
  174.     }
  175.     public function setBusinessDocumentation(?string $businessDocumentation): self
  176.     {
  177.         $this->businessDocumentation $businessDocumentation;
  178.         return $this;
  179.     }
  180.     public function getMoneyAdvance(): ?string
  181.     {
  182.         return $this->moneyAdvance;
  183.     }
  184.     public function setMoneyAdvance(string $moneyAdvance): self
  185.     {
  186.         $this->moneyAdvance $moneyAdvance;
  187.         return $this;
  188.     }
  189.     public function getCreatedAt(): ?\DateTimeInterface
  190.     {
  191.         return $this->createdAt;
  192.     }
  193.     public function setCreatedAt(\DateTimeInterface $createdAt): self
  194.     {
  195.         $this->createdAt $createdAt;
  196.         return $this;
  197.     }
  198.     public function getUpdatedAt(): ?\DateTimeInterface
  199.     {
  200.         return $this->updatedAt;
  201.     }
  202.     public function setUpdatedAt(?\DateTimeInterface $updatedAt): self
  203.     {
  204.         $this->updatedAt $updatedAt;
  205.         return $this;
  206.     }
  207.     public function getSaleId(): ?int
  208.     {
  209.         return $this->saleId;
  210.     }
  211.     public function setSaleId(int $saleId): self
  212.     {
  213.         $this->saleId $saleId;
  214.         return $this;
  215.     }
  216.     public function getSellerAlternative(): ?string
  217.     {
  218.         return $this->sellerAlternative;
  219.     }
  220.     public function setSellerAlternative(string $sellerAlternative): self
  221.     {
  222.         $this->sellerAlternative $sellerAlternative;
  223.         return $this;
  224.     }
  225.     public function getSellerName(): ?string
  226.     {
  227.         return $this->sellerName;
  228.     }
  229.     public function setSellerName(string $sellerName): self
  230.     {
  231.         $this->sellerName $sellerName;
  232.         return $this;
  233.     }
  234.     public function getSellerDNI(): ?string
  235.     {
  236.         return $this->sellerDNI;
  237.     }
  238.     public function setSellerDNI(string $sellerDNI): self
  239.     {
  240.         $this->sellerDNI $sellerDNI;
  241.         return $this;
  242.     }
  243.     public function getSellerAddressName(): ?string
  244.     {
  245.         return $this->sellerAddressName;
  246.     }
  247.     public function setSellerAddressName(string $sellerAddressName): self
  248.     {
  249.         $this->sellerAddressName $sellerAddressName;
  250.         return $this;
  251.     }
  252.     public function getSellerAddressNumber(): ?string
  253.     {
  254.         return $this->sellerAddressNumber;
  255.     }
  256.     public function setSellerAddressNumber(string $sellerAddressNumber): self
  257.     {
  258.         $this->sellerAddressNumber $sellerAddressNumber;
  259.         return $this;
  260.     }
  261.     public function getSellerAddressFloor(): ?string
  262.     {
  263.         return $this->sellerAddressFloor;
  264.     }
  265.     public function setSellerAddressFloor(string $sellerAddressFloor): self
  266.     {
  267.         $this->sellerAddressFloor $sellerAddressFloor;
  268.         return $this;
  269.     }
  270.     public function getSellerAddressApartment(): ?string
  271.     {
  272.         return $this->sellerAddressApartment;
  273.     }
  274.     public function setSellerAddressApartment(string $sellerAddressApartment): self
  275.     {
  276.         $this->sellerAddressApartment $sellerAddressApartment;
  277.         return $this;
  278.     }
  279.     public function getEnabledNotification(): ?bool
  280.     {
  281.         return $this->enabledNotification;
  282.     }
  283.     public function setEnabledNotification(?bool $enabledNotification): self
  284.     {
  285.         $this->enabledNotification $enabledNotification;
  286.         return $this;
  287.     }
  288.     public function getMandateSalePrice(): ?string
  289.     {
  290.         return $this->mandateSalePrice;
  291.     }
  292.     public function setMandateSalePrice(?string $mandateSalePrice): self
  293.     {
  294.         $this->mandateSalePrice $mandateSalePrice;
  295.         return $this;
  296.     }
  297.     public function getMandateRetirementCost(): ?string
  298.     {
  299.         return $this->mandateRetirementCost;
  300.     }
  301.     public function setMandateRetirementCost(?string $mandateRetirementCost): self
  302.     {
  303.         $this->mandateRetirementCost $mandateRetirementCost;
  304.         return $this;
  305.     }
  306.     public function getMandateOthers(): ?string
  307.     {
  308.         return $this->mandateOthers;
  309.     }
  310.     public function setMandateOthers(?string $mandateOthers): self
  311.     {
  312.         $this->mandateOthers $mandateOthers;
  313.         return $this;
  314.     }
  315.     public function getMandateIsShow(): ?string
  316.     {
  317.         return $this->mandateIsShow;
  318.     }
  319.     public function setMandateIsShow(?string $mandateIsShow): self
  320.     {
  321.         $this->mandateIsShow $mandateIsShow;
  322.         return $this;
  323.     }
  324.     public function getStatus(): ?string
  325.     {
  326.         return $this->status;
  327.     }
  328.     public function setStatus(?string $status): self
  329.     {
  330.         $this->status $status;
  331.         return $this;
  332.     }
  333. }