summaryrefslogtreecommitdiff
path: root/tests/simple_unit/ActiveRecord/records/DepSections.php
blob: bf01ed12ad63ce298e2388f3ada2bb7ba60fc9f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
class DepSections extends TActiveRecord
{
	public $department_id;
	public $section_id;
	public $order;

	const TABLE='department_sections';

	public static function finder($className=__CLASS__)
	{
		return parent::finder($className);
	}
}