Blame view

src/Model/Entity/Emprunt.php 1.15 KB
6c4edfa3   Alexandre   First Commit LabI...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
namespace App\Model\Entity;

use Cake\ORM\Entity;

/**
 * Emprunt Entity.
 *
 * @property int $id
 * @property int $materiel_id
 * @property \App\Model\Entity\Materiel $materiel
 * @property \Cake\I18n\Time $date_emprunt
 * @property \Cake\I18n\Time $date_retour_emprunt
 * @property bool $emprunt_interne
 * @property string $laboratoire
ebe38bef   Alexandre   #3586 Ajout assoc...
16
 * @property int $site_id
6c4edfa3   Alexandre   First Commit LabI...
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
 * @property string $e_lieu_detail
 * @property string $nom_emprunteur
 * @property string $email_emprunteur
 * @property string $tel
 * @property string $commentaire
 * @property string $nom_createur
 * @property string $nom_modificateur
 * @property \Cake\I18n\Time $created
 * @property \Cake\I18n\Time $modified
 */
class Emprunt 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...
41
        'id' => false
6c4edfa3   Alexandre   First Commit LabI...
42
43
    ];
}