24 lines
350 B
PHP
24 lines
350 B
PHP
|
<?php
|
||
|
|
||
|
namespace CameraBundle\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="SEQUENCE")
|
||
|
*/
|
||
|
private $id;
|
||
|
}
|