src/Entity/ChangeList.php line 9
<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: "App\Repository\ChangeListRepository")]
#[ORM\Table(name: "ChangeList")]
class ChangeList
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: "integer")]
private $id;
#[ORM\Column(type: "string", length: 255)]
private $entityName;
#[ORM\Column(type: "integer")]
private $changeId;
#[ORM\Column(type: "boolean")]
private $sent;
#[ORM\Column(type: "string", length: 255)]
private $changeType;
#[ORM\Column(type: "string", length: 255, nullable: true)]
private $errorText;
#[ORM\Column]
private ?int $count = null;
public function getEntityName(): ?string
{
return $this->entityName;
}
public function setEntityName(string $entityName): self
{
$this->entityName = $entityName;
return $this;
}
public function getChangeId(): ?int
{
return $this->changeId;
}
public function setChangeId(int $changeId): self
{
$this->changeId = $changeId;
return $this;
}
public function isSent(): bool
{
return $this->sent;
}
public function setSent(bool $sent): self
{
$this->sent = $sent;
return $this;
}
public function getChangeType(): ?string
{
return $this->changeType;
}
public function setChangeType(string $changeType): self
{
$this->changeType = $changeType;
return $this;
}
public function getErrorText(): ?string
{
return $this->errorText;
}
public function setErrorText(?string $errorText): self
{
$this->errorText = $errorText;
return $this;
}
public function getCount(): ?int
{
return $this->count;
}
public function setCount(int $count): static
{
$this->count = $count;
return $this;
}
}