| 1 | <?php |
||
| 8 | class DDC6412File |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @Column(type="integer") |
||
| 12 | * @GeneratedValue |
||
| 13 | */ |
||
| 14 | public $id; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @Column(length=50, name="file_name") |
||
| 18 | */ |
||
| 19 | public $name; |
||
| 20 | |||
| 21 | public function getId() { |
||
| 24 | |||
| 25 | public function setName($name) { |
||
| 28 | |||
| 29 | public function getName() { |
||
| 32 | } |
||
| 33 | |||
| 34 |