Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 4776 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 4776 Rev 5050
Línea 2... Línea 2...
2
 
2
 
Línea 3... Línea 3...
3
declare(strict_types=1);
3
declare(strict_types=1);
Línea -... Línea 4...
-
 
4
 
-
 
5
namespace LeadersLinked\Model;
4
 
6
 
5
namespace LeadersLinked\Model;
7
use PhpParser\Builder\ClassConst;
6
 
8
 
7
class RecruitmentSelectionApplication
9
class RecruitmentSelectionApplication
8
{
10
{
9
    const STATUS_ACTIVE = 'a';
11
    const STATUS_ACTIVE = 'a';
Línea -... Línea 12...
-
 
12
    const STATUS_INACTIVE = 'i';
-
 
13
    const STATUS_SELECTED = 's';
-
 
14
    const STATUS_REJECTED = 'r';
-
 
15
    
-
 
16
    const LEVEL_CAPTURE = 'c';
Línea 10... Línea 17...
10
    const STATUS_INACTIVE = 'i';
17
    const LEVEL_PRE_SELECTION = 's';
11
    const STATUS_SELECTED = 's';
18
    const LEVEL_HUMAN_RESOURCE_INTERVIEW = 'h';
12
    const STATUS_REJECT = 'r';
19
    const LEVEL_BOSS_RESOURCE_INTERVIEW = 'b';
13
    
20
    const LEVEL_FINISHED = 'f';
Línea 46... Línea 53...
46
     *
53
     *
47
     * @var string
54
     * @var string
48
     */
55
     */
49
    public $status;
56
    public $status;
Línea -... Línea 57...
-
 
57
    
-
 
58
    
-
 
59
    /**
-
 
60
     *
-
 
61
     * @var int
-
 
62
     */
-
 
63
    public $points;
-
 
64
    
-
 
65
    /**
-
 
66
     *
-
 
67
     * @var string
-
 
68
     */
-
 
69
    public $comment;
-
 
70
    
-
 
71
    /**
-
 
72
     * 
-
 
73
     * @var string
-
 
74
     */
-
 
75
    public $level; 
50
    
76
    
51
    /**
77
    /**
52
     *
78
     *
53
     * @var string
79
     * @var string
54
     */
80
     */