36 lines
853 B
PHP
36 lines
853 B
PHP
<?php
|
|
namespace App\Model\Entity;
|
|
|
|
use Cake\ORM\Entity;
|
|
|
|
/**
|
|
* WlDstTyp Entity
|
|
*
|
|
* @property int $id
|
|
* @property string $key_value
|
|
* @property string $short
|
|
* @property string $name
|
|
* @property \Cake\I18n\FrozenTime $created
|
|
* @property \Cake\I18n\FrozenTime $modfied
|
|
*/
|
|
class WlDstTyp 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 = [
|
|
'key_value' => true,
|
|
'short' => true,
|
|
'name' => true,
|
|
'created' => true,
|
|
'modfied' => true
|
|
];
|
|
}
|