mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
git-subtree-dir: community_server git-subtree-mainline: ff11f6efe35bba180260fe84077bcd94298895c1 git-subtree-split: b6544b9e69fb85d4da100934675323c3e8c8ef67
33 lines
800 B
PHP
33 lines
800 B
PHP
<?php
|
|
namespace App\Model\Entity;
|
|
|
|
use Cake\ORM\Entity;
|
|
|
|
/**
|
|
* Operator Entity
|
|
*
|
|
* @property int $id
|
|
* @property string $username
|
|
* @property int $operator_type_id
|
|
* @property string $data_base64
|
|
*/
|
|
class Operator extends Entity
|
|
{
|
|
/**
|
|
* Fields that can be mass assigned using newEntity() or patchEntity().
|
|
*
|
|
* Note that when '*' is set to true, this allows all unspecified fields to
|
|
* be mass assigned. For security purposes, it is advised to set '*' to false
|
|
* (or remove it), and explicitly make individual fields accessible as needed.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $_accessible = [
|
|
'username' => true,
|
|
'user_pubkey' => true,
|
|
'operator_type_id' => true,
|
|
'data_base64' => true,
|
|
'modified' => true
|
|
];
|
|
}
|