mirror of
https://github.com/Karaka-Management/oms-RiskManagement.git
synced 2026-01-11 19:38:40 +00:00
108 lines
1.8 KiB
PHP
Executable File
108 lines
1.8 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 8.0
|
|
*
|
|
* @package Modules\RiskManagement\Models
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://orange-management.org
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\RiskManagement\Models;
|
|
|
|
use Modules\Organization\Models\Department as OrgDepartment;
|
|
use Modules\Organization\Models\NullDepartment as NullOrgDepartment;
|
|
|
|
/**
|
|
* Risk Management class.
|
|
*
|
|
* @package Modules\RiskManagement\Models
|
|
* @license OMS License 1.0
|
|
* @link https://orange-management.org
|
|
* @since 1.0.0
|
|
*/
|
|
class Department
|
|
{
|
|
/**
|
|
* ID.
|
|
*
|
|
* @var int
|
|
* @since 1.0.0
|
|
*/
|
|
protected int $id = 0;
|
|
|
|
public ?OrgDepartment $department = null;
|
|
|
|
private ?int $responsible = null;
|
|
|
|
private ?int $deputy = null;
|
|
|
|
/**
|
|
* Get id.
|
|
*
|
|
* @return int Model id
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function getId() : int
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
/**
|
|
* Get responsible.
|
|
*
|
|
* @return mixed
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function getResponsible()
|
|
{
|
|
return $this->responsible;
|
|
}
|
|
|
|
/**
|
|
* set responsible.
|
|
*
|
|
* @param mixed $responsible Responsible
|
|
*
|
|
* @return void
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function setResponsible($responsible) : void
|
|
{
|
|
$this->responsible = $responsible;
|
|
}
|
|
|
|
/**
|
|
* Get deputy.
|
|
*
|
|
* @return mixed
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function getDeputy()
|
|
{
|
|
return $this->deputy;
|
|
}
|
|
|
|
/**
|
|
* Set deputy.
|
|
*
|
|
* @param mixed $deputy Deputy
|
|
*
|
|
* @return void
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function setDeputy($deputy) : void
|
|
{
|
|
$this->deputy = $deputy;
|
|
}
|
|
}
|