2017-11-30 15:06:13 -05:00
|
|
|
<?php
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
2018-01-04 10:42:36 -05:00
|
|
|
* @ORM\GeneratedValue(strategy="IDENTITY")
|
2017-11-30 15:06:13 -05:00
|
|
|
*/
|
|
|
|
private $id;
|
|
|
|
}
|