<?php
namespace Acme\SudcmsBundle\Entity;
use Acme\SudcmsBundle\Repository\EcoCategoriesRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: EcoCategoriesRepository::class)]
class EcoCategories {
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private $id;
#[ORM\Column(type: 'integer')]
private $categ_parent_id;
#[ORM\Column(type: 'string', length: 255)]
private $categ_entitled;
#[ORM\Column(type: 'text', nullable: true)]
private $categ_description;
#[ORM\Column(type: 'boolean', nullable: true)]
private $categ_isonline;
#[ORM\Column(type: 'integer', nullable: true)]
private $categ_sequence;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private $categ_headband;
#[ORM\Column(type: 'integer', nullable: true)]
private $siteId;
public function getId(): ?int {
return $this->id;
}
public function getCategParentId(): ?int {
return $this->categ_parent_id;
}
public function setCategParentId(int $categ_parent_id): self {
$this->categ_parent_id = $categ_parent_id;
return $this;
}
public function getCategEntitled(): ?string {
return $this->categ_entitled;
}
public function setCategEntitled(string $categ_entitled): self {
$this->categ_entitled = $categ_entitled;
return $this;
}
public function getCategDescription(): ?string {
return $this->categ_description;
}
public function setCategDescription(?string $categ_description): self {
$this->categ_description = $categ_description;
return $this;
}
public function getCategSequence(): ?int {
return $this->categ_sequence;
}
public function setCategSequence(?int $categ_sequence): self {
$this->categ_sequence = $categ_sequence;
return $this;
}
public function getCategIsonline(): ?bool {
return $this->categ_isonline;
}
public function setCategIsonline(?bool $categ_isonline): self {
$this->categ_isonline = $categ_isonline;
return $this;
}
public function getCategHeadband(): ?string {
return $this->categ_headband;
}
public function setCategHeadband(?string $categ_headband): self {
$this->categ_headband = $categ_headband;
return $this;
}
public function getSiteId(): ?int
{
return $this->siteId;
}
public function setSiteId(?int $siteId): self
{
$this->siteId = $siteId;
return $this;
}
}