47 lines
1.3 KiB
PHP
47 lines
1.3 KiB
PHP
<?php
|
|
namespace App\Model\Entity;
|
|
|
|
use Cake\ORM\Entity;
|
|
|
|
/**
|
|
* ReportFormat Entity
|
|
*
|
|
* @property int $id
|
|
* @property int $report_format_type_id
|
|
* @property string $name
|
|
* @property string|null $content
|
|
* @property string|null $file_name
|
|
* @property string|null $file_path
|
|
* @property string|null $language
|
|
* @property int $status
|
|
* @property int|null $created_by_id
|
|
* @property int|null $updated_by_id
|
|
* @property \Cake\I18n\Time|null $created_at
|
|
* @property \Cake\I18n\Time|null $updated_at
|
|
*/
|
|
class ReportFormat 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 = [
|
|
'report_format_type_id' => true,
|
|
'name' => true,
|
|
'content' => true,
|
|
'file_name' => true,
|
|
'file_path' => true,
|
|
'language' => true,
|
|
'status' => true,
|
|
'created_by_id' => true,
|
|
'updated_by_id' => true,
|
|
'created_at' => true,
|
|
'updated_at' => true,
|
|
];
|
|
}
|