Suivi.php 1.07 KB
<?php
namespace App\Model\Entity;

use Cake\ORM\Entity;

/**
 * Suivi Entity.
 *
 * @property int $id
 * @property int $materiel_id
 * @property \App\Model\Entity\Materiel $materiel
 * @property \Cake\I18n\Time $date_controle
 * @property \Cake\I18n\Time $date_prochain_controle
 * @property string $type_intervention
 * @property string $organisme
 * @property int $frequence
 * @property string $commentaire
 * @property string $nom_createur
 * @property string $nom_modificateur
 * @property \Cake\I18n\Time $created
 * @property \Cake\I18n\Time $modified
 * @property \App\Model\Entity\Document[] $documents
 */
class Suivi 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 = [
        '*' => true,
        'id' => false,
    ];
}