<?php

/**
 * BaseEmpLocations
 * 
 * This class has been auto-generated by the Doctrine ORM Framework
 * 
 * @property integer $empNumber
 * @property integer $locationId
 * 
 * @method integer      getEmpNumber()  Returns the current record's "empNumber" value
 * @method integer      getLocationId() Returns the current record's "locationId" value
 * @method EmpLocations setEmpNumber()  Sets the current record's "empNumber" value
 * @method EmpLocations setLocationId() Sets the current record's "locationId" value
 * 
 * @package    orangehrm
 * @subpackage model\base
 * @author     Your name here
 * @version    SVN: $Id: Builder.php 7490 2010-03-29 19:53:27Z jwage $
 */
abstract class BaseEmpLocations extends sfDoctrineRecord
{
    public function setTableDefinition()
    {
        $this->setTableName('hs_hr_emp_locations');
        $this->hasColumn('emp_number as empNumber', 'integer', null, array(
             'type' => 'integer',
             'primary' => true,
             ));
        $this->hasColumn('location_id as locationId', 'integer', null, array(
             'type' => 'integer',
             'primary' => true,
             ));
    }

    public function setUp()
    {
        parent::setUp();
        
    }
}