collection-crud/src/Entity/BatteryType.php

24 lines
426 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;
/**
* Battery Type
*/
2022-09-29 20:09:31 -04:00
#[ORM\Table(name: 'battery_type', schema: 'collection')]
#[ORM\Entity]
2017-11-30 15:06:13 -05:00
class BatteryType
{
2022-03-03 11:15:12 -05:00
#[ORM\Column(name: 'id', type: 'integer', nullable: FALSE)]
2022-03-03 10:53:48 -05:00
#[ORM\Id]
#[ORM\GeneratedValue(strategy: 'IDENTITY')]
private int $id;
2022-09-29 20:09:31 -04:00
public function getId(): ?int
{
return $this->id;
}
2017-11-30 15:06:13 -05:00
}