<?php
namespace App\Entity\Gos;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass="App\Repository\Gos\ApplicationContentActivityStatusRepository")
*/
class ApplicationContentActivityStatus
{
/**
* @ORM\Id()
* @ORM\GeneratedValue()
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $advertLastAction;
/**
* @ORM\Column(type="datetime", nullable=true)
*/
private $advertLastActionTime;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $productLastAction;
/**
* @ORM\Column(type="datetime", nullable=true)
*/
private $productLastActionTime;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $productVariantLastAction;
/**
* @ORM\Column(type="datetime", nullable=true)
*/
private $productVariantLastActionTime;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $productAssociationLastAction;
/**
* @ORM\Column(type="datetime", nullable=true)
*/
private $productAssociationLastActionTime;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $productImageLastAction;
/**
* @ORM\Column(type="datetime", nullable=true)
*/
private $productImageLastActionTime;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $tmplModuleContentLastAction;
/**
* @ORM\Column(type="datetime", nullable=true)
*/
private $tmplModuleContentLastActionTime;
public function getId(): ?int
{
return $this->id;
}
public function getAdvertLastAction(): ?string
{
return $this->advertLastAction;
}
public function setAdvertLastAction(?string $advertLastAction): self
{
$this->advertLastAction = $advertLastAction;
return $this;
}
public function getAdvertLastActionTime(): ?\DateTimeInterface
{
return $this->advertLastActionTime;
}
public function setAdvertLastActionTime(?\DateTimeInterface $advertLastActionTime): self
{
$this->advertLastActionTime = $advertLastActionTime;
return $this;
}
public function getProductLastAction(): ?string
{
return $this->productLastAction;
}
public function setProductLastAction(?string $productLastAction): self
{
$this->productLastAction = $productLastAction;
return $this;
}
public function getProductLastActionTime(): ?\DateTimeInterface
{
return $this->productLastActionTime;
}
public function setProductLastActionTime(\DateTimeInterface $productLastActionTime): self
{
$this->productLastActionTime = $productLastActionTime;
return $this;
}
public function getProductVariantLastAction(): ?string
{
return $this->productVariantLastAction;
}
public function setProductVariantLastAction(?string $productVariantLastAction): self
{
$this->productVariantLastAction = $productVariantLastAction;
return $this;
}
public function getProductVariantLastActionTime(): ?\DateTimeInterface
{
return $this->productVariantLastActionTime;
}
public function setProductVariantLastActionTime(\DateTimeInterface $productVariantLastActionTime): self
{
$this->productVariantLastActionTime = $productVariantLastActionTime;
return $this;
}
public function getProductAssociationLastAction(): ?string
{
return $this->productAssociationLastAction;
}
public function setProductAssociationLastAction(?string $productAssociationLastAction): self
{
$this->productAssociationLastAction = $productAssociationLastAction;
return $this;
}
public function getProductAssociationLastActionTime(): ?\DateTimeInterface
{
return $this->productAssociationLastActionTime;
}
public function setProductAssociationLastActionTime(?\DateTimeInterface $productAssociationLastActionTime): self
{
$this->productAssociationLastActionTime = $productAssociationLastActionTime;
return $this;
}
public function getProductImageLastAction(): ?string
{
return $this->productImageLastAction;
}
public function setProductImageLastAction(?string $productImageLastAction): self
{
$this->productImageLastAction = $productImageLastAction;
return $this;
}
public function getProductImageLastActionTime(): ?\DateTimeInterface
{
return $this->productImageLastActionTime;
}
public function setProductImageLastActionTime(?\DateTimeInterface $productImageLastActionTime): self
{
$this->productImageLastActionTime = $productImageLastActionTime;
return $this;
}
public function getTmplModuleContentLastAction(): ?string
{
return $this->tmplModuleContentLastAction;
}
public function setTmplModuleContentLastAction(?string $tmplModuleContentLastAction): self
{
$this->tmplModuleContentLastAction = $tmplModuleContentLastAction;
return $this;
}
public function getTmplModuleContentLastActionTime(): ?\DateTimeInterface
{
return $this->tmplModuleContentLastActionTime;
}
public function setTmplModuleContentLastActionTime(?\DateTimeInterface $tmplModuleContentLastActionTime): self
{
$this->tmplModuleContentLastActionTime = $tmplModuleContentLastActionTime;
return $this;
}
}