Blame view

src/Model/Entity/Suivi.php 1.95 KB
6c4edfa3   Alexandre   First Commit LabI...
1
2
3
4
5
6
7
8
9
10
11
12
13
<?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
6c4edfa3   Alexandre   First Commit LabI...
14
15
 * @property string $organisme
 * @property int $frequence
e55ca961   Alexandre   Version: 2.4.2.8
16
 * @property string $type_frequence
ebe38bef   Alexandre   #3586 Ajout assoc...
17
 * @property int $type_suivi_id
9b4da83b   Alexandre   Version: 2.5.0.0
18
 * @property \App\Model\Entity\TypeSuivi $type_suivi
e9a0cc56   Alexandre   Version: 2.4.6.0
19
20
21
22
 * @property int $groupes_thematique_id
 * @property \App\Model\Entity\GroupesThematique $groupes_thematique
 * @property int $groupes_metier_id
 * @property \App\Model\Entity\GroupesMetier $groupes_metier
6c4edfa3   Alexandre   First Commit LabI...
23
24
25
 * @property string $commentaire
 * @property string $nom_createur
 * @property string $nom_modificateur
aca4ed9b   Alexandre   Version: 2.5.4.0
26
 * @property string $statut
9cfb4997   Alexandre   Version: 2.4.3.10
27
 * @property bool panne_resolu
6c4edfa3   Alexandre   First Commit LabI...
28
29
30
 * @property \Cake\I18n\Time $created
 * @property \Cake\I18n\Time $modified
 * @property \App\Model\Entity\Document[] $documents
fe9ce7fc   Alexis Proust   mise a jour fichier
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
 * @property int $unite_id
 * @property double $plage_debut
 * @property double $plage_fin
 * @property double $resolution
 * @property double $tolerance
 * @property double $sensibilite
 * @property double $justesse
 * @property double $fidelite
 * @property \App\Model\Entity\Unite $unite
 * @property \App\Model\Entity\Fichemetrologique[] $fichemetrologiques
 * @property string $typemesure
 * @property double $emtstandart
 * @property string $symbole
 * @property string $nommesure
 * @property double $valeurRef
 * @property string $etatmetrologique
6c4edfa3   Alexandre   First Commit LabI...
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
 */
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,
63c3cb16   epallier   Nombreux petits b...
62
        'id' => false
6c4edfa3   Alexandre   First Commit LabI...
63
64
    ];
}