mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-12 10:18:27 +01:00
19 lines
244 B
PHP
19 lines
244 B
PHP
<?php
|
|
|
|
namespace yiiunit\data\ar;
|
|
|
|
/**
|
|
* Class Item
|
|
*
|
|
* @property integer $id
|
|
* @property string $name
|
|
* @property integer $category_id
|
|
*/
|
|
class Item extends ActiveRecord
|
|
{
|
|
public static function tableName()
|
|
{
|
|
return 'tbl_item';
|
|
}
|
|
}
|