Item.php 244 Bytes
Newer Older
Qiang Xue committed
1 2 3 4
<?php

namespace yiiunit\data\ar;

5 6 7 8 9 10 11
/**
 * Class Item
 *
 * @property integer $id
 * @property string $name
 * @property integer $category_id
 */
Qiang Xue committed
12 13
class Item extends ActiveRecord
{
Qiang Xue committed
14
	public static function tableName()
Qiang Xue committed
15 16 17
	{
		return 'tbl_item';
	}
Zander Baldwin committed
18
}