Item.php 134 Bytes
Newer Older
Qiang Xue committed
1 2 3 4 5 6
<?php

namespace yiiunit\data\ar;

class Item extends ActiveRecord
{
Qiang Xue committed
7
	public static function tableName()
Qiang Xue committed
8 9 10
	{
		return 'tbl_item';
	}
Zander Baldwin committed
11
}