collection-crud/src/Entity/PreviouslyOwnedLenses.php

39 lines
739 B
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 Doctrine\ORM\Mapping as ORM;
/**
* Camera.previouslyOwnedLenses
*
* @ORM\Table(name="previously_owned_lenses", schema="camera")
* @ORM\Entity(repositoryClass="App\Repository\LensesRepository")
2017-11-30 15:06:13 -05:00
*/
class PreviouslyOwnedLenses
{
use LensTrait;
/**
* @var integer
*
* @ORM\Column(name="id", type="integer", nullable=false)
* @ORM\Id
2018-01-04 10:42:36 -05:00
* @ORM\GeneratedValue(strategy="IDENTITY")
2017-11-30 15:06:13 -05:00
*/
private $id;
/**
* @var boolean
*
* @ORM\Column(name="received", type="boolean", nullable=false)
*/
2022-02-17 14:00:50 -05:00
private bool $received = true;
2017-11-30 15:06:13 -05:00
/**
* @var boolean
*
* @ORM\Column(name="formerly_owned", type="boolean", nullable=false)
*/
2022-02-17 14:00:50 -05:00
private bool $formerlyOwned = true;
2017-11-30 15:06:13 -05:00
}