mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-16 23:48:16 +08:00
29 lines
520 B
PHP
29 lines
520 B
PHP
<?php
|
|
/**
|
|
* @link https://www.yiiframework.com/
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
|
* @license https://www.yiiframework.com/license/
|
|
*/
|
|
|
|
namespace yiiunit\data\ar;
|
|
|
|
/**
|
|
* Class Item.
|
|
*
|
|
* @property int $id
|
|
* @property string $name
|
|
* @property int $category_id
|
|
*/
|
|
class Item extends ActiveRecord
|
|
{
|
|
public static function tableName()
|
|
{
|
|
return 'item';
|
|
}
|
|
|
|
public function getCategory()
|
|
{
|
|
return $this->hasOne(Category::className(), ['id' => 'category_id']);
|
|
}
|
|
}
|