128 lines
3.1 KiB
PHP
128 lines
3.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Entity;
|
|
|
|
use App\Entity\Trait\CuidEntityTrait;
|
|
use DateTimeImmutable;
|
|
use Doctrine\DBAL\Types\Types;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
#[ORM\Entity]
|
|
#[ORM\Table(name: 'composant_subcomponent_slots')]
|
|
#[ORM\HasLifecycleCallbacks]
|
|
class ComposantSubcomponentSlot
|
|
{
|
|
use CuidEntityTrait;
|
|
|
|
#[ORM\Id]
|
|
#[ORM\Column(type: Types::STRING, length: 36)]
|
|
private ?string $id = null;
|
|
|
|
#[ORM\ManyToOne(targetEntity: Composant::class, inversedBy: 'subcomponentSlots')]
|
|
#[ORM\JoinColumn(name: 'composantId', referencedColumnName: 'id', nullable: false, onDelete: 'CASCADE')]
|
|
private Composant $composant;
|
|
|
|
#[ORM\Column(type: Types::STRING, length: 255, nullable: true)]
|
|
private ?string $alias = null;
|
|
|
|
#[ORM\Column(type: Types::STRING, length: 255, nullable: true, name: 'familyCode')]
|
|
private ?string $familyCode = null;
|
|
|
|
#[ORM\ManyToOne(targetEntity: ModelType::class)]
|
|
#[ORM\JoinColumn(name: 'typeComposantId', referencedColumnName: 'id', nullable: true, onDelete: 'SET NULL')]
|
|
private ?ModelType $typeComposant = null;
|
|
|
|
#[ORM\ManyToOne(targetEntity: Composant::class)]
|
|
#[ORM\JoinColumn(name: 'selectedComposantId', referencedColumnName: 'id', nullable: true, onDelete: 'SET NULL')]
|
|
private ?Composant $selectedComposant = null;
|
|
|
|
#[ORM\Column(type: Types::INTEGER, options: ['default' => 0])]
|
|
private int $position = 0;
|
|
|
|
#[ORM\Column(type: Types::DATETIME_IMMUTABLE, name: 'createdAt')]
|
|
private DateTimeImmutable $createdAt;
|
|
|
|
#[ORM\Column(type: Types::DATETIME_IMMUTABLE, name: 'updatedAt')]
|
|
private DateTimeImmutable $updatedAt;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->createdAt = new DateTimeImmutable();
|
|
$this->updatedAt = new DateTimeImmutable();
|
|
}
|
|
|
|
public function getComposant(): Composant
|
|
{
|
|
return $this->composant;
|
|
}
|
|
|
|
public function setComposant(Composant $composant): static
|
|
{
|
|
$this->composant = $composant;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getAlias(): ?string
|
|
{
|
|
return $this->alias;
|
|
}
|
|
|
|
public function setAlias(?string $alias): static
|
|
{
|
|
$this->alias = $alias;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getFamilyCode(): ?string
|
|
{
|
|
return $this->familyCode;
|
|
}
|
|
|
|
public function setFamilyCode(?string $familyCode): static
|
|
{
|
|
$this->familyCode = $familyCode;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getTypeComposant(): ?ModelType
|
|
{
|
|
return $this->typeComposant;
|
|
}
|
|
|
|
public function setTypeComposant(?ModelType $typeComposant): static
|
|
{
|
|
$this->typeComposant = $typeComposant;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getSelectedComposant(): ?Composant
|
|
{
|
|
return $this->selectedComposant;
|
|
}
|
|
|
|
public function setSelectedComposant(?Composant $selectedComposant): static
|
|
{
|
|
$this->selectedComposant = $selectedComposant;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getPosition(): int
|
|
{
|
|
return $this->position;
|
|
}
|
|
|
|
public function setPosition(int $position): static
|
|
{
|
|
$this->position = $position;
|
|
|
|
return $this;
|
|
}
|
|
}
|