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,47 @@
<?php
namespace App\Model\Entity;
use Cake\ORM\Entity;
/**
* CmsuserStatus Entity
*
* @property int $id
* @property int $cmsuser_id
* @property int $is_account_profile_set
* @property int $is_first_client_added
* @property int $is_credit_report_uploaded
* @property int $is_send_first_letter
* @property int $is_automation
* @property int $is_personalized_domain
* @property int $is_agreement
* @property \Cake\I18n\Time|null $created_at
* @property \Cake\I18n\Time|null $updated_at
*
* @property \App\Model\Entity\Cmsuser $cmsuser
*/
class CmsuserStatus 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 = [
'cmsuser_id' => true,
'is_account_profile_set' => true,
'is_first_client_added' => true,
'is_credit_report_uploaded' => true,
'is_send_first_letter' => true,
'is_automation' => true,
'is_personalized_domain' => true,
'is_agreement' => true,
'created_at' => true,
'updated_at' => true,
'cmsuser' => true
];
}