2018-07-18 11:35:27 -04:00
|
|
|
<?php declare(strict_types=1);
|
2017-11-30 15:06:13 -05:00
|
|
|
|
2018-02-14 16:42:39 -05:00
|
|
|
namespace App\Entity;
|
2017-11-30 15:06:13 -05:00
|
|
|
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Camera.lenses
|
|
|
|
*/
|
2022-02-17 15:10:57 -05:00
|
|
|
#[ORM\Table(name: 'lenses', schema: 'camera')]
|
|
|
|
#[ORM\Entity(repositoryClass: 'App\Repository\LensesRepository')]
|
2017-11-30 15:06:13 -05:00
|
|
|
class Lenses
|
|
|
|
{
|
|
|
|
use LensTrait;
|
|
|
|
/**
|
|
|
|
* @var integer
|
|
|
|
*/
|
2022-02-17 15:10:57 -05:00
|
|
|
#[ORM\Column(name: 'id', type: 'integer', nullable: false)]
|
|
|
|
#[ORM\Id]
|
|
|
|
#[ORM\GeneratedValue(strategy: 'IDENTITY')]
|
|
|
|
#[ORM\SequenceGenerator(sequenceName: 'camera.lenses_id_seq', allocationSize: 1, initialValue: 1)]
|
2017-11-30 15:06:13 -05:00
|
|
|
private $id;
|
|
|
|
/**
|
|
|
|
* @var boolean
|
|
|
|
*/
|
2022-02-17 15:10:57 -05:00
|
|
|
#[ORM\Column(name: 'received', type: 'boolean', nullable: false)]
|
2017-11-30 15:06:13 -05:00
|
|
|
private $received = false;
|
|
|
|
/**
|
|
|
|
* @var boolean
|
|
|
|
*/
|
2022-02-17 15:10:57 -05:00
|
|
|
#[ORM\Column(name: 'formerly_owned', type: 'boolean', nullable: false)]
|
2017-11-30 15:06:13 -05:00
|
|
|
private $formerlyOwned = false;
|
|
|
|
}
|