Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
632 efrain 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Model;
6
 
7
class CompanyPerformanceEvaluationFile
8
{
9
    const STATUS_DRAFT = 'd';
10
    const STATUS_PENDING = 'p';
11
    const STATUS_REVIEW = 'r';
12
    const STATUS_COMPLETED = 'c';
13
 
14
    const TYPE_SELF = 's';
15
    const TYPE_PARTIAL = 'p';
16
    const TYPE_FINAL = 'f';
17
 
18
    /**
19
     *
20
     * @var int
21
     */
22
    public $id;
23
 
24
    /**
25
     *
26
     * @var int
27
     */
28
    public $test_id;
29
 
30
    /**
31
     *
32
     * @var string
33
     */
34
    public $uuid;
35
 
36
    /**
37
     *
38
     * @var string
39
     */
40
    public $date;
41
 
42
    /**
43
     *
44
     * @var int
45
     */
46
    public $supervisor_id;
47
 
48
    /**
49
     *
50
     * @var int
51
     */
52
    public $employee_id;
53
 
54
    /**
55
     *
56
     * @var int
57
     */
58
    public $company_id;
59
 
60
    /**
61
     *
62
     * @var int
63
     */
64
    public $form_id;
65
 
66
    /**
67
     *
68
     * @var string
69
     */
70
    public $content;
71
 
72
    /**
73
     *
74
     * @var string
75
     */
76
    public $comments;
77
 
78
    /**
79
     *
80
     * @var string
81
     */
82
    public $type;
83
 
84
    /**
85
     *
86
     * @var string
87
     */
88
    public $status;
89
 
90
    /**
91
     *
92
     * @var string
93
     */
94
    public $added_on;
95
 
96
    /**
97
     *
98
     * @var string
99
     */
100
    public $updated_on;
101
 
102
}