src/Entity/UUID/Owners.php line 9
<?php
namespace App\Entity\UUID;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Table(name: 'uuid_owners')]
#[ORM\Entity(repositoryClass: 'App\Repository\Uuid\OwnerRepository')]
class Owners
{
/**
* @var string
*/
#[ORM\Column(type: 'string', length: 36)]
#[ORM\Id]
private $uuid;
/**
* @var string
*/
#[ORM\Column(type: 'string')]
private $type;
/**
* @return string
*/
public function getUuid(): string
{
return $this->uuid;
}
/**
* @param string $uuid
*/
public function setUuid(string $uuid): void
{
$this->uuid = $uuid;
}
/**
* @return string
*/
public function getType(): string
{
return $this->type;
}
/**
* @param string $type
*/
public function setType(string $type): void
{
$this->type = $type;
}
}