24 lines
341 B
PHP
24 lines
341 B
PHP
<?php
|
|
|
|
namespace App\Entity;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
/**
|
|
* Battery Type
|
|
*
|
|
* @ORM\Table(name="battery_type", schema="camera")
|
|
* @ORM\Entity
|
|
*/
|
|
class BatteryType
|
|
{
|
|
/**
|
|
* @var integer
|
|
*
|
|
* @ORM\Column(name="id", type="integer", nullable=false)
|
|
* @ORM\Id
|
|
* @ORM\GeneratedValue(strategy="IDENTITY")
|
|
*/
|
|
private $id;
|
|
}
|