2008-02-09 02:20:35 +03:00
|
|
|
<?php
|
2008-07-21 00:13:24 +04:00
|
|
|
|
2008-12-18 17:08:11 +03:00
|
|
|
#namespace Doctrine\Tests\ORM\Models\Cms;
|
2008-07-21 00:13:24 +04:00
|
|
|
|
2009-01-05 20:25:56 +03:00
|
|
|
/**
|
|
|
|
* @DoctrineEntity
|
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
class CmsUser
|
2008-02-09 02:20:35 +03:00
|
|
|
{
|
2009-01-05 20:25:56 +03:00
|
|
|
/**
|
|
|
|
* @DoctrineId
|
|
|
|
* @DoctrineColumn(type="integer")
|
|
|
|
* @DoctrineIdGenerator("auto")
|
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
public $id;
|
2009-01-05 20:25:56 +03:00
|
|
|
/**
|
|
|
|
* @DoctrineColumn(type="string", length=50)
|
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
public $status;
|
2009-01-05 20:25:56 +03:00
|
|
|
/**
|
|
|
|
* @DoctrineColumn(type="string", length=255)
|
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
public $username;
|
2009-01-05 20:25:56 +03:00
|
|
|
/**
|
|
|
|
* @DoctrineColumn(type="string", length=255)
|
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
public $name;
|
2009-01-05 20:25:56 +03:00
|
|
|
/**
|
|
|
|
* @DoctrineOneToMany(targetEntity="CmsPhonenumber", mappedBy="user")
|
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
public $phonenumbers;
|
2009-01-05 20:25:56 +03:00
|
|
|
/**
|
|
|
|
* @DoctrineOneToMany(targetEntity="CmsArticle", mappedBy="user")
|
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
public $articles;
|
2008-02-15 03:57:34 +03:00
|
|
|
}
|