collection-crud/src/Entity/CameraType.php

85 lines
1.4 KiB
PHP
Raw Normal View History

2018-07-18 11:35:27 -04:00
<?php declare(strict_types=1);
2017-11-30 15:06:13 -05:00
namespace App\Entity;
2017-11-30 15:06:13 -05:00
use Stringable;
2017-11-30 15:06:13 -05:00
use Doctrine\ORM\Mapping as ORM;
/**
* CameraType
*/
#[ORM\Table(name: 'camera_type', schema: 'camera')]
#[ORM\Entity]
class CameraType implements Stringable
2017-11-30 15:06:13 -05:00
{
#[ORM\Column(name: 'id', type: 'integer', nullable: false)]
#[ORM\Id]
#[ORM\GeneratedValue(strategy: 'IDENTITY')]
#[ORM\SequenceGenerator(sequenceName: 'camera.camera_type_id_seq', allocationSize: 1, initialValue: 1)]
private int $id;
2017-11-30 15:06:13 -05:00
/**
* @var string
*/
#[ORM\Column(name: 'type', type: 'string', length: 255, nullable: false)]
2022-02-17 14:00:50 -05:00
private string $type;
/**
* @var string
*/
#[ORM\Column(name: 'description', type: 'text', nullable: true)]
private ?string $description = null;
2017-11-30 15:06:13 -05:00
/**
* Value for serialization
*/
public function __toString(): string
2017-11-30 15:06:13 -05:00
{
return $this->type;
}
/**
* Get id
*/
public function getId(): int
2017-11-30 15:06:13 -05:00
{
return $this->id;
}
/**
* Set type
*
*
*/
public function setType(string $type): self
2017-11-30 15:06:13 -05:00
{
$this->type = $type;
return $this;
}
/**
* Set description
*
*
*/
public function setDescription(string $description): self
{
$this->description = $description;
return $this;
}
2017-11-30 15:06:13 -05:00
/**
* Get type
*
* @return string
*/
public function getType(): ?string
2017-11-30 15:06:13 -05:00
{
return $this->type;
}
/**
* Get description
*
* @return string
*/
public function getDescription(): ?string
{
return $this->description;
}
2017-11-30 15:06:13 -05:00
}