src/Entity/Gos/ApplicationContentActivityStatus.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Gos;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * @ORM\Entity(repositoryClass="App\Repository\Gos\ApplicationContentActivityStatusRepository")
  6.  */
  7. class ApplicationContentActivityStatus
  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, nullable=true)
  17.      */
  18.     private $advertLastAction;
  19.     /**
  20.      * @ORM\Column(type="datetime", nullable=true)
  21.      */
  22.     private $advertLastActionTime;
  23.     /**
  24.      * @ORM\Column(type="string", length=255, nullable=true)
  25.      */
  26.     private $productLastAction;
  27.     /**
  28.      * @ORM\Column(type="datetime", nullable=true)
  29.      */
  30.     private $productLastActionTime;
  31.     /**
  32.      * @ORM\Column(type="string", length=255, nullable=true)
  33.      */
  34.     private $productVariantLastAction;
  35.     /**
  36.      * @ORM\Column(type="datetime", nullable=true)
  37.      */
  38.     private $productVariantLastActionTime;
  39.     /**
  40.      * @ORM\Column(type="string", length=255, nullable=true)
  41.      */
  42.     private $productAssociationLastAction;
  43.     /**
  44.      * @ORM\Column(type="datetime", nullable=true)
  45.      */
  46.     private $productAssociationLastActionTime;
  47.     /**
  48.      * @ORM\Column(type="string", length=255, nullable=true)
  49.      */
  50.     private $productImageLastAction;
  51.     /**
  52.      * @ORM\Column(type="datetime", nullable=true)
  53.      */
  54.     private $productImageLastActionTime;
  55.     /**
  56.      * @ORM\Column(type="string", length=255, nullable=true)
  57.      */
  58.     private $tmplModuleContentLastAction;
  59.     /**
  60.      * @ORM\Column(type="datetime", nullable=true)
  61.      */
  62.     private $tmplModuleContentLastActionTime;
  63.     public function getId(): ?int
  64.     {
  65.         return $this->id;
  66.     }
  67.     public function getAdvertLastAction(): ?string
  68.     {
  69.         return $this->advertLastAction;
  70.     }
  71.     public function setAdvertLastAction(?string $advertLastAction): self
  72.     {
  73.         $this->advertLastAction $advertLastAction;
  74.         return $this;
  75.     }
  76.     public function getAdvertLastActionTime(): ?\DateTimeInterface
  77.     {
  78.         return $this->advertLastActionTime;
  79.     }
  80.     public function setAdvertLastActionTime(?\DateTimeInterface $advertLastActionTime): self
  81.     {
  82.         $this->advertLastActionTime $advertLastActionTime;
  83.         return $this;
  84.     }
  85.     public function getProductLastAction(): ?string
  86.     {
  87.         return $this->productLastAction;
  88.     }
  89.     public function setProductLastAction(?string $productLastAction): self
  90.     {
  91.         $this->productLastAction $productLastAction;
  92.         return $this;
  93.     }
  94.     public function getProductLastActionTime(): ?\DateTimeInterface
  95.     {
  96.         return $this->productLastActionTime;
  97.     }
  98.     public function setProductLastActionTime(\DateTimeInterface $productLastActionTime): self
  99.     {
  100.         $this->productLastActionTime $productLastActionTime;
  101.         return $this;
  102.     }
  103.     public function getProductVariantLastAction(): ?string
  104.     {
  105.         return $this->productVariantLastAction;
  106.     }
  107.     public function setProductVariantLastAction(?string $productVariantLastAction): self
  108.     {
  109.         $this->productVariantLastAction $productVariantLastAction;
  110.         return $this;
  111.     }
  112.     public function getProductVariantLastActionTime(): ?\DateTimeInterface
  113.     {
  114.         return $this->productVariantLastActionTime;
  115.     }
  116.     public function setProductVariantLastActionTime(\DateTimeInterface $productVariantLastActionTime): self
  117.     {
  118.         $this->productVariantLastActionTime $productVariantLastActionTime;
  119.         return $this;
  120.     }
  121.     public function getProductAssociationLastAction(): ?string
  122.     {
  123.         return $this->productAssociationLastAction;
  124.     }
  125.     public function setProductAssociationLastAction(?string $productAssociationLastAction): self
  126.     {
  127.         $this->productAssociationLastAction $productAssociationLastAction;
  128.         return $this;
  129.     }
  130.     public function getProductAssociationLastActionTime(): ?\DateTimeInterface
  131.     {
  132.         return $this->productAssociationLastActionTime;
  133.     }
  134.     public function setProductAssociationLastActionTime(?\DateTimeInterface $productAssociationLastActionTime): self
  135.     {
  136.         $this->productAssociationLastActionTime $productAssociationLastActionTime;
  137.         return $this;
  138.     }
  139.     public function getProductImageLastAction(): ?string
  140.     {
  141.         return $this->productImageLastAction;
  142.     }
  143.     public function setProductImageLastAction(?string $productImageLastAction): self
  144.     {
  145.         $this->productImageLastAction $productImageLastAction;
  146.         return $this;
  147.     }
  148.     public function getProductImageLastActionTime(): ?\DateTimeInterface
  149.     {
  150.         return $this->productImageLastActionTime;
  151.     }
  152.     public function setProductImageLastActionTime(?\DateTimeInterface $productImageLastActionTime): self
  153.     {
  154.         $this->productImageLastActionTime $productImageLastActionTime;
  155.         return $this;
  156.     }
  157.     public function getTmplModuleContentLastAction(): ?string
  158.     {
  159.         return $this->tmplModuleContentLastAction;
  160.     }
  161.     public function setTmplModuleContentLastAction(?string $tmplModuleContentLastAction): self
  162.     {
  163.         $this->tmplModuleContentLastAction $tmplModuleContentLastAction;
  164.         return $this;
  165.     }
  166.     public function getTmplModuleContentLastActionTime(): ?\DateTimeInterface
  167.     {
  168.         return $this->tmplModuleContentLastActionTime;
  169.     }
  170.     public function setTmplModuleContentLastActionTime(?\DateTimeInterface $tmplModuleContentLastActionTime): self
  171.     {
  172.         $this->tmplModuleContentLastActionTime $tmplModuleContentLastActionTime;
  173.         return $this;
  174.     }
  175. }