22 lines
260 B
PHP
22 lines
260 B
PHP
|
<?php
|
||
|
|
||
|
namespace Doctrine\Tests\Models\DDC6412;
|
||
|
|
||
|
/**
|
||
|
* @Entity
|
||
|
*/
|
||
|
class DDC6412File
|
||
|
{
|
||
|
/**
|
||
|
* @Column(type="integer")
|
||
|
* @GeneratedValue
|
||
|
*/
|
||
|
public $id;
|
||
|
|
||
|
/**
|
||
|
* @Column(length=50, name="file_name")
|
||
|
*/
|
||
|
public $name;
|
||
|
}
|
||
|
|