AutorÃa | Ultima modificación | Ver Log |
<?php
declare(strict_types=1);
namespace LeadersLinked\Model;
class CompanyPerformanceEvaluationFile
{
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 int
*/
public $test_id;
/**
*
* @var string
*/
public $uuid;
/**
*
* @var string
*/
public $date;
/**
*
* @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 $type;
/**
*
* @var string
*/
public $status;
/**
*
* @var string
*/
public $added_on;
/**
*
* @var string
*/
public $updated_on;
}