oms-HumanResourceManagement/Models/EmployeeHistoryMapper.php
2019-07-08 19:51:27 +02:00

37 lines
686 B
PHP

<?php
/**
* Orange Management
*
* PHP Version 7.2
*
* @package TBD
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
namespace Modules\HumanResourceManagement\Models;
use phpOMS\DataStorage\Database\DataMapperAbstract;
final class EmployeeHistoryMapper extends DataMapperAbstract
{
/**
* Primary field name.
*
* @var string
* @since 1.0.0
*/
protected static $primaryField = 'hr_staff_history_id';
/**
* Primary table.
*
* @var string
* @since 1.0.0
*/
protected static $table = 'hr_staff_history';
}