src/Entity/Reklama.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ReklamaRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=ReklamaRepository::class)
  7.  */
  8. class Reklama
  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)
  18.      */
  19.     private $urlAddress;
  20.     /**
  21.      * @ORM\Column(type="datetime", nullable=true)
  22.      */
  23.     private $startDate;
  24.     /**
  25.      * @ORM\Column(type="datetime", nullable=true)
  26.      */
  27.     private $exprDate;
  28.     /**
  29.      * @ORM\Column(type="string", length=255, nullable=true)
  30.      */
  31.     private $dnsAddress;
  32.     /**
  33.      * @ORM\Column(type="integer", nullable=true, options={"default" : 0})
  34.      */
  35.     private $client;
  36.     /**
  37.      * @ORM\Column(type="string", length=255, nullable=true)
  38.      */
  39.     private $agreementType;
  40.     /**
  41.      * @ORM\Column(type="string", length=255, nullable=true)
  42.      */
  43.     private $seoAgreementType;
  44.     /**
  45.      * @ORM\Column(type="float", nullable=true, options={"default" : 0})
  46.      */
  47.     private $ryczalt;
  48.     /**
  49.      * @ORM\Column(type="float", nullable=true, options={"default" : 0})
  50.      */
  51.     private $userCost;
  52.    
  53.     /**
  54.      * @ORM\Column(type="text", nullable=true)
  55.      */
  56.     private $files;
  57.     /**
  58.      * @ORM\Column(type="string", length=255, nullable=true)
  59.      */
  60.     private $agreementTime;
  61.     /**
  62.      * @ORM\Column(type="string", length=255, nullable=true)
  63.      */
  64.     private $endTime;
  65.     /**
  66.      * @ORM\Column(type="text", nullable=true)
  67.      */
  68.     private $description;
  69.     /**
  70.      * @ORM\Column(type="text", nullable=true)
  71.      */
  72.     private $clientsArray;
  73.     /**
  74.      * @ORM\Column(type="text", nullable=true)
  75.      */
  76.     private $selfInfo;
  77.     /**
  78.      * @ORM\Column(type="datetime", nullable=true)
  79.      */
  80.     private $createdDate;
  81.     /**
  82.      * @ORM\Column(type="integer", nullable=true)
  83.     */
  84.     private $status;
  85.     /**
  86.      * @ORM\Column(type="string", length=255, nullable=true)
  87.      */
  88.     private $company;
  89.     /**
  90.      * @ORM\Column(type="integer")
  91.      */
  92.     private $w_status 0;
  93.     
  94.     public function getId(): ?int
  95.     {
  96.         return $this->id;
  97.     }
  98.     public function getUrlAddress(): ?string
  99.     {
  100.         return $this->urlAddress;
  101.     }
  102.     public function setUrlAddress(string $urlAddress): self
  103.     {
  104.         $this->urlAddress $urlAddress;
  105.         return $this;
  106.     }
  107.     public function getDnsAddress(): ?string
  108.     {
  109.         return $this->dnsAddress;
  110.     }
  111.     public function setDnsAddress(?string $dnsAddress): self
  112.     {
  113.         $this->dnsAddress $dnsAddress;
  114.         return $this;
  115.     }
  116.     public function getExprDate(): ?\DateTimeInterface
  117.     {
  118.         return $this->exprDate;
  119.     }
  120.     public function setExprDate(\DateTimeInterface $exprDate): self
  121.     {
  122.         $this->exprDate $exprDate;
  123.         return $this;
  124.     }
  125.     public function getStartDate(): ?\DateTimeInterface
  126.     {
  127.         return $this->startDate;
  128.     }
  129.     public function setStartDate(\DateTimeInterface $startDate): self
  130.     {
  131.         $this->startDate $startDate;
  132.         return $this;
  133.     }
  134.     public function getClient(): ?string
  135.     {
  136.         return $this->client;
  137.     }
  138.     public function setClient(?string $client): self
  139.     {
  140.         $this->client $client;
  141.         return $this;
  142.     }
  143.     public function getAgreementType(): ?string
  144.     {
  145.         return $this->agreementType;
  146.     }
  147.     public function setAgreementType(?string $agreementType): self
  148.     {
  149.         $this->agreementType $agreementType;
  150.         return $this;
  151.     }
  152.     public function getSeoAgreementType(): ?string
  153.     {
  154.         return $this->seoAgreementType;
  155.     }
  156.     public function setSeoAgreementType(?string $seoAgreementType): self
  157.     {
  158.         $this->seoAgreementType $seoAgreementType;
  159.         return $this;
  160.     }
  161.     public function getRyczalt(): ?float
  162.     {
  163.         return $this->ryczalt;
  164.     }
  165.     public function setRyczalt(?float $ryczalt): self
  166.     {
  167.         $this->ryczalt $ryczalt;
  168.         return $this;
  169.     }
  170.     public function getUserCost(): ?float
  171.     {
  172.         return $this->userCost;
  173.     }
  174.     public function setUserCost(?float $userCost): self
  175.     {
  176.         $this->userCost $userCost;
  177.         return $this;
  178.     }
  179.     public function getFiles(): ?string
  180.     {
  181.         return $this->files;
  182.     }
  183.     public function setFiles(?string $files): self
  184.     {
  185.         $this->files $files;
  186.         return $this;
  187.     }
  188.     public function getAgreementTime(): ?string
  189.     {
  190.         return $this->agreementTime;
  191.     }
  192.     public function setAgreementTime(?string $agreementTime): self
  193.     {
  194.         $this->agreementTime $agreementTime;
  195.         return $this;
  196.     }
  197.     public function getEndTime(): ?string
  198.     {
  199.         return $this->endTime;
  200.     }
  201.     public function setEndTime(?string $endTime): self
  202.     {
  203.         $this->endTime $endTime;
  204.         return $this;
  205.     }
  206.     public function getDescription(): ?string
  207.     {
  208.         return $this->description;
  209.     }
  210.     public function setDescription(?string $description): self
  211.     {
  212.         $this->description $description;
  213.         return $this;
  214.     }
  215.     public function getSelfInfo(): ?string
  216.     {
  217.         return $this->selfInfo;
  218.     }
  219.     public function setSelfInfo(?string $selfInfo): self
  220.     {
  221.         $this->selfInfo $selfInfo;
  222.         return $this;
  223.     }
  224.     public function getClientsArray(): ?string
  225.     {
  226.         return $this->clientsArray;
  227.     }
  228.     public function setClientsArray(?string $clientsArray): self
  229.     {
  230.         $this->clientsArray $clientsArray;
  231.         return $this;
  232.     }
  233.     public function getCreatedDate(): ?\DateTimeInterface
  234.     {
  235.         return $this->createdDate;
  236.     }
  237.     public function setCreatedDate(\DateTimeInterface $createdDate): self
  238.     {
  239.         $this->createdDate $createdDate;
  240.         return $this;
  241.     }
  242.     
  243.     public function getCompany(): ?string
  244.     {
  245.         return $this->company;
  246.     }
  247.     public function setCompany(?string $company): self
  248.     {
  249.         $this->company $company;
  250.         return $this;
  251.     }
  252.     /**
  253.      * Get the value of status
  254.      */ 
  255.     public function getStatus()
  256.     {
  257.         return $this->status;
  258.     }
  259.     /**
  260.      * Set the value of status
  261.      *
  262.      * @return  self
  263.      */ 
  264.     public function setStatus($status)
  265.     {
  266.         $this->status $status;
  267.         return $this;
  268.     }
  269.     public function getWStatus(): ?int
  270.     {
  271.         return $this->w_status;
  272.     }
  273.     public function setWStatus(int $w_status): self
  274.     {
  275.         $this->w_status $w_status;
  276.         return $this;
  277.     }
  278. }