mirror of
https://github.com/Karaka-Management/oms-HumanResourceManagement.git
synced 2026-01-11 20:28:40 +00:00
49 lines
932 B
PHP
49 lines
932 B
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.0
|
|
*
|
|
* @category TBD
|
|
* @package TBD
|
|
* @author OMS Development Team <dev@oms.com>
|
|
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
|
* @copyright 2013 Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link http://orange-management.com
|
|
*/
|
|
namespace Modules\HumanResources\Models;
|
|
|
|
use phpOMS\Datatypes\Enum;
|
|
|
|
/**
|
|
* Position type enum.
|
|
*
|
|
* @category Module
|
|
* @package Modules\HumanResources
|
|
* @author OMS Development Team <dev@oms.com>
|
|
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
|
* @license OMS License 1.0
|
|
* @link http://orange-management.com
|
|
* @since 1.0.0
|
|
*/
|
|
abstract class PositionType extends Enum
|
|
{
|
|
const INTERN = 0;
|
|
|
|
const APPRENTICE = 1;
|
|
|
|
const JUNIOR = 2;
|
|
|
|
const REGULAR = 3;
|
|
|
|
const SENIOR = 4;
|
|
|
|
const ASSISTANT = 5;
|
|
|
|
const TEAMLEADER = 6;
|
|
|
|
const HEAD = 7;
|
|
}
|