24 lines
355 B
PHP
24 lines
355 B
PHP
<?php
|
|
|
|
namespace Doctrine\Tests\Models\DDC3231;
|
|
|
|
/**
|
|
* @Entity(repositoryClass="DDC3231User1Repository")
|
|
* @Table(name="users")
|
|
*/
|
|
class DDC3231User1
|
|
{
|
|
/**
|
|
* @Id
|
|
* @Column(type="integer")
|
|
* @GeneratedValue(strategy="AUTO")
|
|
*/
|
|
protected $id;
|
|
|
|
/**
|
|
* @Column(type="string", length=255)
|
|
*/
|
|
protected $name;
|
|
|
|
}
|