initial commit

This commit is contained in:
2026-06-29 14:51:56 +06:00
commit c5c4b7c509
2400 changed files with 725568 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
<?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,
];
}