113 lines
2.7 KiB
PHP
113 lines
2.7 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_piece_slots')]
|
|
#[ORM\HasLifecycleCallbacks]
|
|
class ComposantPieceSlot
|
|
{
|
|
use CuidEntityTrait;
|
|
|
|
#[ORM\Id]
|
|
#[ORM\Column(type: Types::STRING, length: 36)]
|
|
private ?string $id = null;
|
|
|
|
#[ORM\ManyToOne(targetEntity: Composant::class, inversedBy: 'pieceSlots')]
|
|
#[ORM\JoinColumn(name: 'composantId', referencedColumnName: 'id', nullable: false, onDelete: 'CASCADE')]
|
|
private Composant $composant;
|
|
|
|
#[ORM\ManyToOne(targetEntity: ModelType::class)]
|
|
#[ORM\JoinColumn(name: 'typePieceId', referencedColumnName: 'id', nullable: true, onDelete: 'SET NULL')]
|
|
private ?ModelType $typePiece = null;
|
|
|
|
#[ORM\ManyToOne(targetEntity: Piece::class)]
|
|
#[ORM\JoinColumn(name: 'selectedPieceId', referencedColumnName: 'id', nullable: true, onDelete: 'SET NULL')]
|
|
private ?Piece $selectedPiece = null;
|
|
|
|
#[ORM\Column(type: Types::INTEGER, options: ['default' => 1])]
|
|
private int $quantity = 1;
|
|
|
|
#[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 getTypePiece(): ?ModelType
|
|
{
|
|
return $this->typePiece;
|
|
}
|
|
|
|
public function setTypePiece(?ModelType $typePiece): static
|
|
{
|
|
$this->typePiece = $typePiece;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getSelectedPiece(): ?Piece
|
|
{
|
|
return $this->selectedPiece;
|
|
}
|
|
|
|
public function setSelectedPiece(?Piece $selectedPiece): static
|
|
{
|
|
$this->selectedPiece = $selectedPiece;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getQuantity(): int
|
|
{
|
|
return $this->quantity;
|
|
}
|
|
|
|
public function setQuantity(int $quantity): static
|
|
{
|
|
$this->quantity = $quantity;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getPosition(): int
|
|
{
|
|
return $this->position;
|
|
}
|
|
|
|
public function setPosition(int $position): static
|
|
{
|
|
$this->position = $position;
|
|
|
|
return $this;
|
|
}
|
|
}
|