Initial commit
This commit is contained in:
35
src/Model/Entity/WlDstTyp.php
Normal file
35
src/Model/Entity/WlDstTyp.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?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
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user