Rev 553 | AutorÃa | Ultima modificación | Ver Log |
<?phpdeclare(strict_types=1);namespace LeadersLinked\Model;class CompanyPerformanceEvaluationTest{const STATUS_DRAFT = 'd';const STATUS_PENDING = 'p';const STATUS_REVIEW = 'r';const STATUS_COMPLETED = 'c';const TYPE_SELF = 's';const TYPE_PARTIAL = 'p';const TYPE_FINAL = 'f';/**** @var int*/public $id;/**** @var string*/public $uuid;/**** @var int*/public $supervisor_id;/***** @var int*/public $employee_id;/**** @var int*/public $company_id;/**** @var int*/public $form_id;/**** @var string*/public $content;/**** @var string*/public $comments;/**** @var string*/public $status;/**** @var string*/public $type;/**** @var string*/public $added_on;/**** @var string*/public $updated_on;}