2014-09-06 18:14:16 +03:00
|
|
|
<?php
|
|
|
|
|
2014-09-06 18:29:14 +03:00
|
|
|
namespace Doctrine\Tests\Models\DDC3231;
|
2014-09-06 18:14:16 +03:00
|
|
|
|
|
|
|
/**
|
2014-09-06 18:29:14 +03:00
|
|
|
* @Entity(repositoryClass="DDC3231User2Repository")
|
|
|
|
* @Table(name="users2")
|
2014-09-06 18:14:16 +03:00
|
|
|
*/
|
2014-09-06 18:29:14 +03:00
|
|
|
class DDC3231User2
|
2014-09-06 18:14:16 +03:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @Id
|
|
|
|
* @Column(type="integer")
|
|
|
|
* @GeneratedValue(strategy="AUTO")
|
|
|
|
*/
|
|
|
|
protected $id;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Column(type="string", length=255)
|
|
|
|
*/
|
|
|
|
protected $name;
|
|
|
|
|
|
|
|
}
|