collection-crud/src/Entity/BatteryType.php

24 lines
341 B
PHP
Raw Normal View History

2017-11-30 15:06:13 -05:00
<?php
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;
}